1
0
Fork 0
mirror of https://github.com/swisskyrepo/PayloadsAllTheThings.git synced 2024-04-23 12:25:09 +02:00

Add reference to panoptic and rip-hg tools

This commit is contained in:
lanjelot 2020-12-12 04:52:21 +11:00
parent aaff374395
commit c6d0ba29e7
2 changed files with 13 additions and 1 deletions

View File

@ -35,6 +35,7 @@
* [Kadimus - https://github.com/P0cL4bs/Kadimus](https://github.com/P0cL4bs/Kadimus)
* [LFISuite - https://github.com/D35m0nd142/LFISuite](https://github.com/D35m0nd142/LFISuite)
* [fimap - https://github.com/kurobeats/fimap](https://github.com/kurobeats/fimap)
* [panoptic - https://github.com/lightos/Panoptic](https://github.com/lightos/Panoptic)
## Basic LFI

View File

@ -16,6 +16,8 @@
- [BAZAAR - Source code management](#bazaar---source-code-management)
- [Automatic way : rip-bzr](#automatic-way--rip-bzr)
- [Automatic way : bzr_dumper](#automatic-way--bzr_dumper)
- [MERCURIAL - Source code management](#mercurial---source-code-management)
- [Automatic way : rip-hg](#automatic-way--rip-hg)
## GIT - Source code management
@ -218,7 +220,7 @@ python svn-extractor.py url "url with .svn available"
```powershell
wget https://raw.githubusercontent.com/kost/dvcs-ripper/master/rip-bzr.pl
docker run --rm -it -v /path/to/host/work:/work:rw k0st/alpine-dvcs-ripper rip-git.pl -v -u
docker run --rm -it -v /path/to/host/work:/work:rw k0st/alpine-dvcs-ripper rip-bzr.pl -v -u
```
### Automatic way : bzr_dumper
@ -246,6 +248,15 @@ $ bzr revert
N static/
```
## MERCURIAL - Source code management
### Automatic way : rip-hg.pl
```powershell
wget https://raw.githubusercontent.com/kost/dvcs-ripper/master/rip-hg.pl
docker run --rm -it -v /path/to/host/work:/work:rw k0st/alpine-dvcs-ripper rip-hg.pl -v -u
```
## References
- [bl4de, hidden_directories_leaks](https://github.com/bl4de/research/tree/master/hidden_directories_leaks)