Skip to content

Commit 77c7b38

Browse files
author
Michael Skelton
committed
Merge branch 'master' of https://github.com/codingo/Reconnoitre
2 parents 96da72a + 8d5dc19 commit 77c7b38

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ This tool can be used and copied for personal use freely however attribution and
2828
| --ignore-http-codes | Comma separated list of http codes to ignore with virtual host scans. |
2929
| --ignore-content-length | Ignore content lengths of specificed amount. This may become useful when a server returns a static page on every virtual host guess. |
3030
| --quiet | Supress banner and headers and limit feedback to grepable results. |
31-
| --exec | Execute shell commands from recommendations as they are discovered. Likely to lead to very long execution times depending on the wordlist being used and discovered vectors. |
32-
| --simple_exec | Execute non-brute forcing shell comamnds only commands as they are discovered. Likely to lead to very long execution times depending on the wordlist being used and discovered vectors. |
3331
| --quick | Move to the next target after performing a quick scan and writing first-round recommendations. |
3432
| --no-udp | Disable UDP service scanning, which is ON by default. |
3533

reconnoitre.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ def main():
6464
parser.add_argument('--ignore-content-length', dest='ignore_content_length', type=int, help='Ignore content lengths of specificed amount. This may become useful when a server returns a static page on every virtual host guess.', default=0)
6565

6666
parser.add_argument("--quiet", dest="quiet", action="store_true", help="Supress banner and headers to limit to comma dilimeted results only.", default=False)
67-
parser.add_argument("--exec", dest="follow", action="store_true", help="Execute shell comamnds from recommendations as they are discovered. Likely to lead to very long execute times depending on the wordlist being used.", default=False)
6867
parser.add_argument("--simple_exec", dest="quickfollow", action="store_true", help="Execute non-brute forcing shell comamnds only as they are discovered.", default=False)
6968
parser.add_argument("--no-udp", dest="no_udp_service_scan", action="store_true", help="Disable UDP services scan over targets.", default=False)
7069
arguments = parser.parse_args()

0 commit comments

Comments
 (0)