| Cheater | ID |
|---|---|
| HindsightTM | 3602b853-87bd-45b5-bb97-dc4ed982293b |
| AsckiTM | 07fc0309-fdbc-4926-97c1-16776db374f6 |
| ZethonCheats | c4c405cc-07e8-4585-81c0-aaa1df48da1f |
| OvertakeTM | 01d025b8-f98a-4b45-82f2-4a11af9796fd |
| DanOnTheMars | 4d83ec9a-f50d-4a0c-a04c-7a535a7ee6a2 |
| BrandonTheDerp | 3f2c1dd1-af6f-4b00-b68c-51aca858c7ff |
| jimbajones | 1f00cc4a-7b2c-4daa-80d4-8877a7cefc7b |
| laycDE | 6fb21e34-5dd6-4b03-81cb-4c030b64e328 |
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
| // deno run -E -W=import.sh,data/ -R=data/ -N=mkwrs.com mk.ts --refresh | |
| // Dumped .json files of each game | |
| export const dataFolder = "./data"; | |
| // Generated database import script | |
| const importScript = "./import.sh"; | |
| const userAgent = "ne^"; |
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
| export const libc = Deno.dlopen(Deno.env.get("LIBC_PATH") ?? "libc.so.6", { | |
| ptrace: { | |
| parameters: ["i32", "i32", "pointer", "pointer"], | |
| result: "i32", | |
| }, | |
| process_vm_readv: { | |
| parameters: ["i32", "buffer", "i32", "buffer", "i32", "i32"], | |
| result: "i32", | |
| }, | |
| }); |
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
| export const libc = Deno.dlopen( | |
| "libc.so.6", | |
| { | |
| dl_iterate_phdr: { | |
| parameters: ["function", "pointer"], | |
| result: "i32", | |
| }, | |
| readlink: { | |
| parameters: ["buffer", "buffer", "isize"], | |
| result: "isize", |
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
| const fetch=(u)=>new Promise((x)=>require('https').request(u,{headers:{'User-Agent':'n^'}},(r)=>{let b='';r.on('data',(d)=>b+=d);r.on('end',()=>x(b));}).end()); | |
| // Example: | |
| fetch('https://api.github.com/users/NeKzor/followers') | |
| .then(JSON.parse) | |
| .then((followers) => console.log(followers.length)); | |
| // > 15 |
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
| #![no_std] | |
| use asr::{ | |
| future::{next_tick, retry}, | |
| signature::Signature, | |
| time::Duration, | |
| timer::{self}, | |
| watcher::Watcher, | |
| Process, | |
| }; |
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
| const fetch = require('node-fetch'); | |
| const createHiddenField = (obj, fieldName, value) => { | |
| Object.defineProperty(obj, fieldName, { | |
| enumerable: false, | |
| writable: true, | |
| value: value, | |
| }); | |
| }; |
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
| const fs = require('fs'); | |
| const client_sixense = process.argv[2] || './portal2_sixense/bin/client_sixense.dll'; | |
| const module = fs.readFileSync(client_sixense); | |
| const patch = [ | |
| [ | |
| // Fix crash in init | |
| // cmp ecx 69 |
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
| // cl /O2 /MD /LD dllmain.cpp /Fe:tsp-bhop | |
| #include <cstring> | |
| #include <memory> | |
| #include <Windows.h> | |
| #include <Psapi.h> | |
| // client.dll Build 5454 | |
| #define IN_JUMP_OFFSET 0xF52670 // /src/game/client/in_main.cpp | |
| #define KEYDOWN_OFFSET 0x165EF // /src/game/client/in_main.cpp |
NewerOlder