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
E:\Code\Go\src\github.com\Tustin\psn-dob>go run main.go | |
trying {1995 1 1} | |
set proxy: 203.77.230.115:1080 | |
trying {1995 1 1} | |
set proxy: 145.239.4.43:8080 | |
trying {1995 1 1} | |
set proxy: 76.3.32.22:29214 | |
trying {1995 1 1} | |
trying {1995 1 2} | |
trying {1995 1 3} |
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
import discord | |
import asyncio | |
import requests | |
import json | |
client = discord.Client() | |
def check_psn(psn): | |
response = requests.post('https://accounts.api.playstation.com/api/v1/accounts/onlineIds', json={"onlineId": psn, "reserveIfAvailable": False}) | |
return response.status_code != 401 and response.status_code != 400 |
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
QG7X-PFQ70-WLDE | |
MTVB-NJ5YZ-RK0N | |
RW6P-PW4ZN-T3F0 | |
ZXHL-35ELN-KWW6 | |
CS1Q-34GPF-NLR1 | |
7Z6L-89X4D-3457 | |
QBWP-5GTGC-401L | |
988P-8DL97-REWF | |
3LLY-TXH44-27CN | |
PTFR-43ZDP-LVDE |
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 zipper (arr1, arr2) | |
if !arr2.empty? | |
zipper(arr1.insert(arr1.size - 1, arr2.shift), arr2) | |
else | |
return arr1 | |
end | |
end | |
a = [1,2] | |
b = [3,4,5] |
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
void DoWhatever() { | |
char headerBuffer[1024]; | |
strcpy(headerBuffer, "GET /settings.php HTTP/1.0\r\n"); | |
strcat(headerBuffer, "Host: 127.0.0.1\r\n"); //change to server IP | |
strcat(headerBuffer, "SID: AAAA-AAAA-AAAA-AAAA\r\n"); //change to the user's key | |
strcat(headerBuffer, "User-Agent: PS3"); //not neccessary but you could do server checks to make sure its from PS3 | |
strcat(headerBuffer, "\r\n\r\n"); //end the HTTP header | |
char *response = SendRequest(headerBuffer); |
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
using System; | |
using System.IO; | |
namespace pkg_merge | |
{ | |
public class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Directory.GetFiles("pkgs"); |
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
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Net; | |
using System.Net.Security; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Xml; |
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
//Compiled using RAGE-C by Tustin 6/15/2017 | |
:__script_entry__ | |
Function 0 2 0 | |
//Auto assigning 1 statics | |
Push1 200 | |
StaticSet1 0 //FXDelay01 | |
Call @main | |
Return 0 0 | |
:main |
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
package main | |
import ( | |
"bufio" | |
"encoding/json" | |
"fmt" | |
"io/ioutil" | |
"log" | |
"os" | |
"strconv" |
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
int __fastcall repEncrpyt(int a1, char *a2, signed int a3) | |
{ | |
char *v3; // r3@1 | |
signed int v4; // r7@1 | |
int v5; // r6@1 | |
unsigned int v6; // r2@1 | |
int v7; // r5@1 | |
char *v8; // r5@2 | |
int v9; // r4@2 | |
__int32 v10; // r0@3 |