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
| /* | |
| ================================================| | |
| Jar2Exe level 2 Unpacker (Hide Class protection)| | |
| Created by Levis Nickaster | | |
| http://ltops9.wordpress.com | | |
| ================================================| | |
| */ | |
| #include <stdio.h> | |
| #include <stdlib.h> |
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
| #!/bin/sh | |
| ARCHIVE="master.zip" | |
| SCRIPT_PATH="$HOME/GNUstep/Library/ApplicationSupport/Hopper/Scripts/" | |
| UNZIP_PATH="HopperScripts-master" | |
| #Require wget, unzip | |
| echo "Hopper Disassembler Scripts Installer\n Based on phracker Github Repository" | |
| echo "Moving to TMP folder..." | |
| cd /tmp |
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 Calculate(iSum, lValue): | |
| lTmp=range(0,len(lValue)+1) | |
| for i in range(0x20,0x7F): | |
| lTmp[0]=i | |
| cSum=0 | |
| cSum+=lTmp[0] | |
| for j in range(0,len(lValue)): | |
| lTmp[j+1]=lTmp[j]+lValue[j] | |
| cSum+=lTmp[j+1] | |
| if cSum==iSum: |
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 sumOdd(a): | |
| i=1 | |
| result=0 | |
| while i<a: | |
| result+=i | |
| i+=2 | |
| return result | |
| def getPrime(a): | |
| result =[] |
NewerOlder