From c6d0ba29e7d42b13d7f8320dafca4aa27bfd0793 Mon Sep 17 00:00:00 2001 From: lanjelot Date: Sat, 12 Dec 2020 04:52:21 +1100 Subject: [PATCH] Add reference to panoptic and rip-hg tools --- File Inclusion/README.md | 1 + Insecure Source Code Management/README.md | 13 ++++++++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/File Inclusion/README.md b/File Inclusion/README.md index c356bd4..8bb0a16 100644 --- a/File Inclusion/README.md +++ b/File Inclusion/README.md @@ -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 diff --git a/Insecure Source Code Management/README.md b/Insecure Source Code Management/README.md index 56c776b..fac09c5 100644 --- a/Insecure Source Code Management/README.md +++ b/Insecure Source Code Management/README.md @@ -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)