Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Info Stealer a tool to extract browser data, cookies from the victim's system #3243

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#### Name: [Ayushman Pal](https://github.com/WannaCry016)

- Place: Chennai, India
- Bio: Fullstack Developer | Mobile Game Developer | ML/AI Enthusiast
- GitHub: [WannaCry016](https://github.com/WannaCry016)

#### Name: [3mYouOL](https://github.com/3mYouOL)

- Place: Iloilo, Philippines
Expand Down
1 change: 1 addition & 0 deletions PROJECTS/Info-Stealers
Submodule Info-Stealers added at 199f7e
16 changes: 16 additions & 0 deletions Python/Nmap_Scanner.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import nmap

nm = nmap.PortScanner()

# scan a target host for open ports
nm.scan('localhost', arguments='-p 22,80,443')

# print the state of the ports
for host in nm.all_hosts():
print('Host : %s (%s)' % (host, nm[host].hostname()))
print('State : %s' % nm[host].state())
for proto in nm[host].all_protocols():
print('Protocol : %s' % proto)
ports = nm[host][proto].keys()
for port in ports:
print('port : %s\tstate : %s' % (port, nm[host][proto][port]['state']))
33 changes: 33 additions & 0 deletions profiles/Ayushman Pal.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Ayushman Pal

### Location

Chennai, INDIA

### Academics

- Pursuing Btech in Chemical Engineering at Indian Institute of Technology, Madras

### Interests

- Learning Enthusiast
- Music
- Python
- HTML/CSS/JS
- DSA (C++)

### Skills

- DSA
- Typing(with speed more than 140WPM)
- Java
- Git & GitHub
- Python

### Projects

- [Portfolio] https://github.com/WannaCry016

### Profile Link

[Ayushman Pal](https://github.com/WannaCry016)
1 change: 1 addition & 0 deletions scripts/hello_world_WannaCry016.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print("Hello World")
Loading