2023年11月12日

A-X Write up-Aster(没###)

摘要: 第四届信安大挑战-Write up --By Aster > MISC 1. wow 首先查看属性,得到第一部分flag:d1no{We1co,然后喜闻乐见拖进010里面,在text最下面有flag2 : me_2_mi5c,最后打开虚拟机kali指令foremost -i wow.jpg -o o 阅读全文

posted @ 2023-11-12 15:56 aster_ist 阅读(40) 评论(0) 推荐(0) 编辑

2023年9月18日

用python求100到999以内的水仙花数(不用除法求各项)

摘要: 用python求100到999以内的水仙花数(不用除法求各项) c = 0 for a in range(100,1000): for b in str(a): a1 = int(b) c =c+a1**3 if a == c: print(a) c = 0 输出结果为 153 370 371 407 使用for循环来取数字中的每一位,不过数字要先化为str格式 阅读全文

posted @ 2023-09-18 09:49 aster_ist 阅读(147) 评论(0) 推荐(0) 编辑

导航