wechall challenges
Training: Get Sourced
check the source, end of html element
Training: Stegano I
1 | ❯ wget https://www.wechall.net/challenge/training/stegano1/stegano1.bmp |
Training: ASCII
1 | # use cyberchef to decode, from decimal |
Crypto - Caesar I
1 | XLI UYMGO FVSAR JSB NYQTW SZIV XLI PEDC HSK SJ GEIWEV ERH CSYV YRMUYI WSPYXMSR MW RTIKVVRIMJPT |
Encodings - URL encode
1 |
|
WWW-Robots
1 | https://www.wechall.net/robots.txt |
Prime Factory
1 | def is_prime(n): return n > 1 and all(n % i != 0 for i in range(2, int(n**0.5) + 1)) |