Skip to content

Instantly share code, notes, and snippets.

View Uyavuz24's full-sized avatar
:octocat:
lovin cat videos

UYavuz Uyavuz24

:octocat:
lovin cat videos
View GitHub Profile
@Uyavuz24
Uyavuz24 / sms.txt
Last active October 29, 2020 00:11
6 digits
This file has been truncated, but you can view the full file.
000000
000001
000002
000003
000004
000005
000006
000007
000008
000009
@Uyavuz24
Uyavuz24 / port-scan.sh
Created December 7, 2020 17:02 — forked from priyanshus/port-scan.sh
NMAP scan for a list of subdomains
#!/bin/bash
#Performs port scan using nmap
print_usage() {
cat << _EOF_
Utility to scan open ports. Can be used to scan ports for a domain or a list of domains specified in a file.
Example Usage:
-h, --help Show brief help
-d, --domain Domain name or ip to scan
-f, --file Spefify a file containing domains/IPs to scan
def queueRequests(target, wordlists):
engine = RequestEngine(endpoint=target.endpoint,
concurrentConnections=5,
requestsPerConnection=1, # if you increase this from 1, you may get false positives
resumeSSL=False,
timeout=10,
pipeline=False,
maxRetriesPerRequest=0,
engine=Engine.THREADED,
)