Skip to content

Commit c680691

Browse files
committed
Update hackUtils.py
1 parent 101df4c commit c680691

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

hackUtils.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ def myhelp():
589589
print " -w keyword, --wooyun=keyword Fetch URLs from Wooyun Corps based on specific keyword"
590590
print " -j url|file, --joomla=url|file Exploit SQLi for Joomla 3.2 - 3.4"
591591
print " -r url|file, --rce=url|file Exploit Remote Code Execution for Joomla 1.5 - 3.4.5 (Password: handle)"
592-
print " -f url|file, --feifeicms=url|file Exploit Remote Code Execution for FeiFeiCMS 2.8 (Password: 1)"
592+
print " -f url|file, --ffcms=url|file Exploit Remote Code Execution for FeiFeiCMS 2.8 (Password: 1)"
593593
print " -d site, --domain=site Scan subdomains based on specific site"
594594
print " -e string, --encrypt=string Encrypt string based on specific encryption algorithms (e.g. base64, md5, sha1, sha256, etc.)"
595595
print "\nExamples:"
@@ -608,7 +608,7 @@ def myhelp():
608608

609609
def main():
610610
try:
611-
options,args = getopt.getopt(sys.argv[1:],"hb:g:w:j:r:f:d:e:",["help","baidu=","google=","wooyun=","joomla=","rce=","feifeicms=","domain=","encrypt="])
611+
options,args = getopt.getopt(sys.argv[1:],"hb:g:w:j:r:f:d:e:",["help","baidu=","google=","wooyun=","joomla=","rce=","ffcms=","domain=","encrypt="])
612612
except getopt.GetoptError:
613613
print "\n[WARNING] error, to see help message of options run with '-h'"
614614
sys.exit()
@@ -626,7 +626,7 @@ def main():
626626
checkJoomla(value)
627627
if name in ("-r","--rce"):
628628
rceJoomla(value)
629-
if name in ("-f","--feifeicms"):
629+
if name in ("-f","--ffcms"):
630630
rceFeiFeiCMS(value)
631631
if name in ("-d","--domain"):
632632
scanSubDomains('baidu',value,50)

0 commit comments

Comments
 (0)