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
https://www.virustotal.com/gui/file/14bf2f2b4879370d9fe788186214c1f02cdcf3b732165edeef29e6a84363b764/relations | |
https://x.com/James_inthe_box/status/1866530426216648845 | |
Content: | |
``` | |
An #expiro (believe it or not) dropping #xloader | |
https://app.any.run/tasks/43f807db-2361-4807-8e05-19831c56b5e4 |
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
#Author: TOuHami Kasbaoui || 0BteMosLab | |
from pwn import * | |
import sys | |
HOST='202.120.7.204' | |
PORT=127 | |
if len(sys.argv)>1: | |
r=remote(HOST,PORT) |
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/perl | |
# Perl Virus Generator | |
####### Strings | |
$header = <<'HEADER' ; | |
################################################### | |
############## Perl Virus Generator ############### |
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 <stdio.h> | |
#include <stdlib.h> | |
#include <stdint.h> | |
#ifdef _MSC_VER | |
#include <intrin.h> /* for rdtscp and clflush */ | |
#pragma optimize("gt",on) | |
#else | |
#include <x86intrin.h> /* for rdtscp and clflush */ | |
#endif |
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
/* | |
___ ____ _ | |
/ _ \| __ )| |_ ___ _ __ ___ ___ ___ | |
| | | | _ \| __/ _ \ '_ ` _ \ / _ \/ __| | |
| |_| | |_) | || __/ | | | | | (_) \__ \ | |
\___/|____/ \__\___|_| |_| |_|\___/|___/ | |
Touhami Kasbaoui / VBHS / 0BTEMOS | |
*/ | |
int led = 13; // you will put pin+ in Digital case 13 |
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
;---------------------------------------- | |
; | |
; :: XOR ENCRYPT :: | |
; usage: ./xor <message> <key> | |
; VBHS/ TOuhami Kasbaoui | |
;--------------------------------------- | |
[BITS 64] |
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/python | |
#TOUHAMI KASBAOUI | |
#VBHS | |
from pwn import * | |
### [PPC] Tokyo Westerns CTF 3rd 2017 - Palindromes Pairs - Coding Phase | |
def palindrome(num): | |
return num == num[::-1] |