文章分类 - 安全
网络安全
摘要:题目: 请根据题目文件得出看海地点名称并且小写全拼后MD5加密套上flag{} 思路: 社工->找标志物,在图中找出有用的信息,如801路,北戴河海滨汽车站,公交车,37路,海滨汽车站,怪楼,单庄,专线一路等,图中有一辆公交车,推测该处为北戴河海滨汽车站,根据时间1小时10分钟后看海,推测找出该公交
阅读全文
posted @ 2025-05-15 11:16
lethe311
摘要:题目: int __fastcall main(int argc, const char **argv, const char **envp) { char s[64]; // [rsp+0h] [rbp-40h] BYREF init(argc, argv, envp); __isoc99_sca
阅读全文
posted @ 2025-05-15 10:46
lethe311
摘要:题目: 1.py #sha sha256 = '5875d1b49d1e75478c37cec83534ac477f939578da80b8e317bb2fb1e525ec7a' message = '××××mybabywonder' print(('SHA-256(?+{}) == {}'.fo
阅读全文
posted @ 2025-05-15 00:16
lethe311
摘要:题目: 寡王小王同学每天七夕的时候都会自觉的选择在家领悟佛法中的真谛,然而随着一年一年过去小王同学对于佛法的理解可以说是倒背如流,于是在2021年七夕前夕,他毅然决然舍弃了自己的韩式欧巴气垫中分纹理烫造型,出家探索佛法中的真谛。 到了寺庙以后,小王同学听到两个僧人之间的对话小王犯了嘀咕:“这俩大哥说
阅读全文
posted @ 2025-05-14 22:21
lethe311
摘要:题目: int __fastcall __noreturn main(int argc, const char **argv, const char **envp) { int v3; // [rsp+14h] [rbp-5Ch] BYREF int v4; // [rsp+18h] [rbp-58
阅读全文
posted @ 2025-05-14 18:15
lethe311
摘要:题目: int __fastcall main(int argc, const char **argv, const char **envp) { int v4; // [rsp+14h] [rbp-1Ch] BYREF int v5; // [rsp+18h] [rbp-18h] BYREF in
阅读全文
posted @ 2025-05-14 00:01
lethe311
摘要:题目: <?php /* PolarD&N CTF */ class User{ public $name; public $age; public $sex; public function __toString() { return "name:".$this->name."age:".$thi
阅读全文
posted @ 2025-05-12 21:27
lethe311
摘要:题目: <?php /* PolarD&N CTF */ class Polar { public $night; public $night_arg; public function __wakeup() { echo "hacker"; $this->night->hacker($this->n
阅读全文
posted @ 2025-05-12 20:37
lethe311
摘要:题目: import sys def abc(First): First = c_uint32(First) return First def enflag(i, j): a = 32 tt = 0x9e3779b9 b = [0,0] First = abc(i[0]) Second = abc(
阅读全文
posted @ 2025-05-12 20:00
lethe311
摘要:题目: 明文:cajfedlarc hint:两个key是该密码创始人的姓名 script: import string global char, ddq, k, kk, z, zz s = "cajfedlarc" k1 = "Felix".lower() print(k1) k2 = "Dela
阅读全文
posted @ 2025-05-12 13:36
lethe311
摘要:题目: int come_on() { char buf[64]; // [esp+Ch] [ebp-4Ch] BYREF unsigned int v2; // [esp+4Ch] [ebp-Ch] v2 = __readgsdword(0x14u); system("echo hhh~"); r
阅读全文
posted @ 2025-05-12 10:12
lethe311
摘要:首先观察特征,是AAencode 得到 `$=~[];$={___:++$,$$$$:(![]+"")[$],__$:++$,$_$_:(![]+"")[$],_$_:++$,$_$$:({}+"")[$],$$_$:($[$]+"")[$],_$$:++$,$$$_:(!""+"")[$],$__
阅读全文
posted @ 2025-05-11 21:54
lethe311
摘要:题目: <?php $sandBox = md5($_SERVER['REMOTE_ADDR']); if(!is_dir($sandBox)){ mkdir($sandBox,0755,true); } if($_FILES){ move_uploaded_file($_FILES['file']
阅读全文
posted @ 2025-05-11 16:05
lethe311
摘要:凯撒加密:是一种替换密码,通过将字母表中的每个字母移动固定数量的位置来加密信息。例如,若移动量为3,“A”会被替换为“D”,“B”替换为“E”,依此类推。在一些实现中,秘钥会自动根据随机数生成,并且每次加密时随机决定向前或向后移位,同时需记录加密时的随机数和移位方向作为秘钥用于解密。 import
阅读全文
posted @ 2025-05-11 13:37
lethe311
摘要:题目: int __fastcall main(int argc, const char **argv, const char **envp) { unsigned int v3; // eax size_t v4; // rax char input[100]; // [rsp+20h] [rbp
阅读全文
posted @ 2025-05-11 13:04
lethe311
摘要:首先,使用jadx分析 在res文件找到AndroadMainfast.xml,这个是主要窗口 package com.example.activitytest; import android.os.Bundle; import android.view.View; import android.w
阅读全文
posted @ 2025-05-11 11:24
lethe311
摘要:题目: # e(x)=11x+6(mod26) import string flag = "" char = string.ascii_lowercase print(char) s = "kesglyueen" for i in s: m = (pow(11, -1, 26) * (ord(i)
阅读全文
posted @ 2025-05-11 10:06
lethe311
摘要:题目: &,3(S-#4V 先uuencode解密: 密码123456 steghide提取音频文件: 得到>9FQA9WLV-S$S-S@Y-#8P,C,V-#@W-S@S,C0V.#E] 再次uuencode解密:
阅读全文
posted @ 2025-05-10 22:33
lethe311
摘要:题目: int __fastcall main(int argc, const char **argv, const char **envp) { _main(); puts("Input :"); gets(str); Check_Length(); Strlen(); sub122(x); ch
阅读全文
posted @ 2025-05-10 15:24
lethe311