SecLists/README.md

65 lines
1.9 KiB
Markdown
Raw Normal View History

2017-12-19 15:49:53 +03:00
![seclists.png](https://danielmiessler.com/images/seclists-long.png "seclists.png")
2016-01-21 21:00:25 +03:00
2019-02-19 17:03:04 +03:00
### About SecLists
2014-05-17 00:33:53 +04:00
2018-10-15 15:07:39 +03:00
SecLists is the security tester's companion. It's a collection of multiple types of lists used during security assessments, collected in one place. List types include usernames, passwords, URLs, sensitive data patterns, fuzzing payloads, web shells, and many more. The goal is to enable a security tester to pull this repository onto a new testing box and have access to every type of list that may be needed.
2013-07-23 23:27:52 +04:00
2020-05-04 12:10:52 +03:00
This project is maintained by [Daniel Miessler](https://danielmiessler.com/), [Jason Haddix](https://twitter.com/Jhaddix), and [g0tmi1k](https://blog.g0tmi1k.com/).
2019-01-07 18:49:28 +03:00
- - -
2014-05-17 00:44:20 +04:00
2018-11-26 13:19:38 +03:00
### Install
**Zip**
```
wget -c https://github.com/danielmiessler/SecLists/archive/master.zip -O SecList.zip \
&& unzip SecList.zip \
&& rm -f SecList.zip
```
**Git (Small)**
```
git clone --depth 1 https://github.com/danielmiessler/SecLists.git
```
**Git (Complete)**
```
2019-07-11 21:28:04 +03:00
git clone https://github.com/danielmiessler/SecLists.git
2018-11-26 13:19:38 +03:00
```
2018-11-26 13:20:38 +03:00
**Kali Linux** ([Tool Page](https://tools.kali.org/password-attacks/seclists))
2018-11-26 13:19:38 +03:00
```
apt -y install seclists
2018-11-26 13:19:38 +03:00
```
2019-01-07 18:49:28 +03:00
- - -
2018-10-15 15:07:39 +03:00
### Attribution
See [CONTRIBUTORS.md](CONTRIBUTORS.md)
2018-06-13 14:14:09 +03:00
2019-01-07 18:49:28 +03:00
- - -
### Contributing
2018-06-13 14:14:09 +03:00
See [CONTRIBUTING.md](CONTRIBUTING.md)
2017-12-19 15:49:53 +03:00
2019-01-07 18:49:28 +03:00
- - -
2019-01-07 18:58:27 +03:00
### Similar Projects
2019-01-07 18:49:28 +03:00
* [PayloadsAllTheThings](https://github.com/swisskyrepo/PayloadsAllTheThings)
* [FuzzDB](https://github.com/fuzzdb-project/fuzzdb)
- - -
### Licensing
2017-12-19 15:49:53 +03:00
2018-10-15 15:07:39 +03:00
This project is licensed under the [MIT license](LICENSE).
2017-12-19 15:49:53 +03:00
2017-12-19 16:26:21 +03:00
![MIT License](https://danielmiessler.com/images/mitlicense.png)
2017-12-19 15:49:53 +03:00
2019-11-03 14:04:57 +03:00
<sup>NOTE: Downloading this repository is likely to cause a false-positive alarm by your anti-virus or anti-malware software, the filepath should be whitelisted. There is nothing in SecLists that can harm your computer as-is, however it's not recommended to store these files on a server or other important system due to the risk of local file include attacks.</sup>