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
$Url = "https://i.pinimg.com/originals/31/47/33/31473329e8b5ff1b7c7e57bf9624342d.png" | |
$Dest = Join-Path $env:TEMP "image.png" | |
Invoke-WebRequest -Uri $Url -OutFile $Dest | |
Write-Host "Image downloaded to: $Dest" -ForegroundColor Green | |
Start-Process "https://x.com/compose/tweet" | |
Start-Sleep -Seconds 10 | |
Add-Type -AssemblyName System.Windows.Forms | |
[System.Windows.Forms.SendKeys]::SendWait("Hello from w4gur1l0v3r malware!") |
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
$Url = "https://i.pinimg.com/originals/31/47/33/31473329e8b5ff1b7c7e57bf9624342d.png" | |
$Dest = Join-Path $env:TEMP "image.png" | |
Invoke-WebRequest -Uri $Url -OutFile $Dest | |
for ($i = 1; $i -le 10; $i++) { | |
Start-Process $Dest | |
} |
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 selenium import webdriver | |
from selenium.webdriver.chrome.options import Options | |
from selenium.webdriver.common.by import By | |
from selenium.webdriver.common.action_chains import ActionChains | |
from selenium.webdriver.support.ui import WebDriverWait | |
from selenium.webdriver.support import expected_conditions as EC | |
import threading | |
import time | |
import random |
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 requests | |
import threading | |
import random | |
import string | |
import time | |
URL = "https://5chan-be.vercel.app/post/create" | |
THREAD_COUNT = 50 | |
DELAY = 0.1 |
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
key1, key2 = 23, 6 | |
A = [95, 40, 73, 81, 92, 43, 114, 43, 41, 118, | |
72, 58, 38, 121, 88, 78, 131, 57, 118, 61, | |
78, 38, 43, 38, 112] | |
flag = [] | |
for i, c in enumerate(A): | |
if i % 2 == 0: | |
d = (c - key2) ^ key1 | |
else: |
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
info_numbers = [ | |
(78, 19162), | |
(69, 48261), | |
(84, 12475), | |
(76, 17101), # Changed 76 to 69 | |
(65, 35196), # Changed 76 to 65 | |
(66, 53397), # Changed 66 to 65 | |
(123, 36644), | |
(72, 17101), | |
(52, 11035), |
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 re | |
def extract_rst_causes(filename): | |
with open(filename, "r", encoding="utf-8") as f: | |
data = f.read() | |
causes = re.findall(r"Reset cause:\s*(.*)", data) | |
flag_text = ' '.join(causes).replace('\n', ' ').strip() | |
return flag_text | |
if __name__ == "__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
import requests | |
from bs4 import BeautifulSoup | |
# Target base URL | |
base_url = "https://netlab-wordpress-ctf.tagj8z.easypanel.host" | |
# Common WordPress paths and CTF-guess paths | |
paths = [ | |
"/", "/wp-login.php", "/wp-admin/", "/robots.txt", "/sitemap.xml", | |
"/flag", "/hidden", "/secret", "/backup", "/db", "/flag.txt", |
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 <readline/readline.h> | |
#include <readline/history.h> | |
#include <string.h> | |
#include <stdlib.h> | |
#include <errno.h> | |
void inputCommand(); | |
int main() { | |
inputCommand(); |
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 <unistd.h> | |
#include <sys/types.h> | |
#include <sys/stat.h> | |
#include <fcntl.h> | |
#include <string.h> | |
#define FIFO_NAME "modul7" | |
#define MESSAGE "It's message from child using named pipe" |
NewerOlder