s0i37

Results 64 comments of s0i37

Yes. I really meant it. The good example of my idea - is Ghidra SRE.

Yes. I support you! It may be very usefull for checking pre huge proxy-list before using them.

I had same error. Just change: ``` [email protected]('--check-whois/--no-check-whois', '--whois', default=False, [email protected]('--check-whois/--no-check-whois', '-w', default=False, ```

Here is a good example: ![temp](https://github.com/maurosoria/dirsearch/assets/22872513/1724d145-417b-410d-9a47-324dc9bbd5a6) It is obvious that the first 16 lines are the same page (same length and code)

I try to use: `LD_PRELOAD=/usr/lib/x86_64-linux-gnu/fakechroot/libfakechroot.so:/usr/lib/x86_64-linux-gnu/libfakeroot/libfakeroot-sysv.so chroot /tmp/chroot64 /bin/bash` When I try to use linker in chroot64: `export FAKECHROOT_ELFLOADER=/tmp/chroot64/lib/x86_64-linux-gnu/ld-2.28.so` Using library path in chroot: `export FAKECHROOT_LDLIBPATH=/tmp/chroot64/lib:/tmp/chroot64/lib32:/tmp/chroot64/lib64:/tmp/chroot64/libx32:/tmp/chroot64/usr/lib:/tmp/chroot64/usr/lib/x86_64-linux-gnu:/tmp/chroot64/lib/x86_64-linux-gnu` And avoiding host system library...

The solve: ``` wget http://database.clamav.net/main.cvd wget https://raw.githubusercontent.com/mattulm/volgui/master/tools/clamav_to_yara.py sigtool -u main.cvd ./clamav_to_yara.py -f main.ndb -o clamav.yara ```

Also response1_body=response1**.text**

It happens because of gcc doesn't pass any warnings. To avoid this you can add "-w" option to gcc. Just change in build.sh: ``` -make -j${jobs} +make -j${jobs} CFLAGS="-w" ```