hacking: security in practice
Timeframe to mask attack 10 character password
How long would it take to mask attack a 10 character password that includes upper/lower case letters, numbers and special characters and one of the special characters is known (not its place in the password though) using 8 rtx 4090's?
submitted by /u/theboops79
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Timeframe to mask attack 10 character password
How long would it take to mask attack a 10 character password that includes upper/lower case letters, numbers and special characters and one of the special characters is known (not its place in the password though) using 8 rtx 4090's?
submitted by /u/theboops79
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
Timeframe to mask attack 10 character password
How long would it take to mask attack a 10 character password that includes upper/lower case letters, numbers and special characters and one of...
Hacking on Medium
It is very simple to show off a deep web Hacker for Hire Service for an iPhone using the hire a…
HACKSPYWARE is a Professional cell phone hacker for hire and Hiring an iPhone hacker. Cell phone hackers for hire have a tendency to…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
It is very simple to show off a deep web Hacker for Hire Service for an iPhone using the hire a…
HACKSPYWARE is a Professional cell phone hacker for hire and Hiring an iPhone hacker. Cell phone hackers for hire have a tendency to…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
It is very simple to show off a deep web Hacker for Hire Service for an iPhone using the hire a…
HACKSPYWARE is a Professional cell phone hacker for hire and Hiring an iPhone hacker. Cell phone hackers for hire have a tendency to…
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Building Custom Malware With Python
https://cdn-images-1.medium.com/max/1600/1*DQv9W_g50Ml-iNNOjyp8gA.jpeg
Creating custom malware is tricky, so here’s a full walkthrough on the basics.
Continue reading on The Gray Area »
___________________________
@hacking_Attack
@Hacking_Video
Building Custom Malware With Python
https://cdn-images-1.medium.com/max/1600/1*DQv9W_g50Ml-iNNOjyp8gA.jpeg
Creating custom malware is tricky, so here’s a full walkthrough on the basics.
Continue reading on The Gray Area »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Building Custom Malware With Python
Creating custom malware is tricky, so here’s a full walkthrough on the basics.
hacking: security in practice
Was given a free pass to a local Cyber Security Summit, anyone here been to one of these? How was it?
Posted on /r/cybersecurity with no response, so figured I'd try here. I was approached online to see if I'd be willing to go to this Cyber Security Summit in Los Angeles late last week and I'm curious if anyone here's been to any of the events hosted by these people. I've been more of a DEF CON / HOPE type of goer, and compared to that this seems far more corporate CTO forward than anything else. Finally, since I've heard it's mostly like a vendor row in a previous post, is there at least some good swag that makes taking the 4:15AM train worth it?
submitted by /u/buzzbros2002
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Was given a free pass to a local Cyber Security Summit, anyone here been to one of these? How was it?
Posted on /r/cybersecurity with no response, so figured I'd try here. I was approached online to see if I'd be willing to go to this Cyber Security Summit in Los Angeles late last week and I'm curious if anyone here's been to any of the events hosted by these people. I've been more of a DEF CON / HOPE type of goer, and compared to that this seems far more corporate CTO forward than anything else. Finally, since I've heard it's mostly like a vendor row in a previous post, is there at least some good swag that makes taking the 4:15AM train worth it?
submitted by /u/buzzbros2002
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
Was given a free pass to a local Cyber Security Summit, anyone...
Posted on /r/cybersecurity with no response, so figured I'd try here. I was approached online to see if I'd be willing to go to this [Cyber...
hacking: security in practice
Buffer overflow, canary enabled but program only seems to accept arguments as input
I've got a pretty tricky flag that I have been beating my head against for a while now and would love an explanation for how something like this would be possible. I have a program that when run, seemingly immediately cancels itself. File returns:
and Checksec returns:
As you can see, it has a canary enabled which is a problem considering the program accepts no input after running it. Usually I would either brute force the canary or grab it when it leaks then pass it to be input, but I don't see how it's possible to grab the leak and then put it in as an arg after the fact - but since the canary changes on execution you clearly have to do that. Everything looks like you'd expect when disassembling it in ghidra - except for the no input part. Here's the main func:
0x000000000040060e <+0: push rbp 0x000000000040060f <+1: mov rbp,rsp 0x0000000000400612 <+4: sub rsp,0x10 0x0000000000400616 <+8: mov DWORD PTR [rbp-0x4],edi 0x0000000000400619 <+11: mov QWORD PTR [rbp-0x10],rsi 0x000000000040061d <+15: mov rax,QWORD PTR [rbp-0x10] 0x0000000000400621 <+19: add rax,0x8 0x0000000000400625 <+23: mov rax,QWORD PTR [rax] 0x0000000000400628 <+26: mov rdi,rax 0x000000000040062b <+29: call 0x4005a7
and here's the evil func:
0x00000000004005a7 <+0: push rbp 0x00000000004005a8 <+1: mov rbp,rsp 0x00000000004005ab <+4: sub rsp,0x70 0x00000000004005af <+8: mov QWORD PTR [rbp-0x68],rdi 0x00000000004005b3 <+12: mov rax,QWORD PTR fs:0x28 0x00000000004005bc <+21: mov QWORD PTR [rbp-0x8],rax 0x00000000004005c0 <+25: xor eax,eax 0x00000000004005c2 <+27: mov DWORD PTR [rbp-0x54],0x0 0x00000000004005c9 <+34: mov rdx,QWORD PTR [rbp-0x68] 0x00000000004005cd <+38: lea rax,[rbp-0x50] 0x00000000004005d1 <+42: mov rsi,rdx 0x00000000004005d4 <+45: mov rdi,rax 0x00000000004005d7 <+48: mov eax,0x0 0x00000000004005dc <+53: call 0x4004b0
Any input would be greatly appreciated!
edit: this is what I get when I overflow:
submitted by /u/Cascodius
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Buffer overflow, canary enabled but program only seems to accept arguments as input
I've got a pretty tricky flag that I have been beating my head against for a while now and would love an explanation for how something like this would be possible. I have a program that when run, seemingly immediately cancels itself. File returns:
file.exe: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, for GNU/Linux 3.2.0, BuildID[sha1]=60e0255339eac5de5c216aed54d2b55cfa3d7dda, not stripped and Checksec returns:
Arch: amd64-64-little RELRO: Partial RELRO Stack: Canary found NX: NX enabled PIE: No PIE (0x400000) As you can see, it has a canary enabled which is a problem considering the program accepts no input after running it. Usually I would either brute force the canary or grab it when it leaks then pass it to be input, but I don't see how it's possible to grab the leak and then put it in as an arg after the fact - but since the canary changes on execution you clearly have to do that. Everything looks like you'd expect when disassembling it in ghidra - except for the no input part. Here's the main func:
0x000000000040060e <+0: push rbp 0x000000000040060f <+1: mov rbp,rsp 0x0000000000400612 <+4: sub rsp,0x10 0x0000000000400616 <+8: mov DWORD PTR [rbp-0x4],edi 0x0000000000400619 <+11: mov QWORD PTR [rbp-0x10],rsi 0x000000000040061d <+15: mov rax,QWORD PTR [rbp-0x10] 0x0000000000400621 <+19: add rax,0x8 0x0000000000400625 <+23: mov rax,QWORD PTR [rax] 0x0000000000400628 <+26: mov rdi,rax 0x000000000040062b <+29: call 0x4005a7
and here's the evil func:
0x00000000004005a7 <+0: push rbp 0x00000000004005a8 <+1: mov rbp,rsp 0x00000000004005ab <+4: sub rsp,0x70 0x00000000004005af <+8: mov QWORD PTR [rbp-0x68],rdi 0x00000000004005b3 <+12: mov rax,QWORD PTR fs:0x28 0x00000000004005bc <+21: mov QWORD PTR [rbp-0x8],rax 0x00000000004005c0 <+25: xor eax,eax 0x00000000004005c2 <+27: mov DWORD PTR [rbp-0x54],0x0 0x00000000004005c9 <+34: mov rdx,QWORD PTR [rbp-0x68] 0x00000000004005cd <+38: lea rax,[rbp-0x50] 0x00000000004005d1 <+42: mov rsi,rdx 0x00000000004005d4 <+45: mov rdi,rax 0x00000000004005d7 <+48: mov eax,0x0 0x00000000004005dc <+53: call 0x4004b0
Any input would be greatly appreciated!
edit: this is what I get when I overflow:
$ ./malicious.exe aaAa0Aa1Aa2Aa3Aa4Aa5Aa6Aa7Aa8Aa9Ab0Ab1Ab2Ab3Ab4Ab5Ab6Ab7Ab8Ab9Ac0Ac1Ac2Ac3Ac4Ac5Ac6Ac7Ac8Ac9Ad0Ad1Ad2Ad3Ad4Ad5Ad6Ad7Ad8Ad9Ae0Ae1Ae2Ae3Ae4Ae5Ae6Ae7Ae8Ae9Af0Af1Af2Af3Af4Af5Af6Af7Af8Af9Ag0Ag1Ag2Ag3Ag4Ag5Ag *** stack smashing detected ***: terminated Aborted (core dumped)
submitted by /u/Cascodius
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
Buffer overflow, canary enabled but program only seems to accept...
I've got a pretty tricky flag that I have been beating my head against for a while now and would love an explanation for how something like this...
hacking: security in practice
Two Factor Code being sent unprompted
It started with my google account so I changed the password and a few account using the same password, now Im getting phone calls with 2 factor codes being sent via Phone calls but I have no Idea what account it is for. so something has been compromised, but what other step can I take if don't know what service is sending the 2 factor code.
submitted by /u/Famous-Error-2929
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Two Factor Code being sent unprompted
It started with my google account so I changed the password and a few account using the same password, now Im getting phone calls with 2 factor codes being sent via Phone calls but I have no Idea what account it is for. so something has been compromised, but what other step can I take if don't know what service is sending the 2 factor code.
submitted by /u/Famous-Error-2929
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
Two Factor Code being sent unprompted
It started with my google account so I changed the password and a few account using the same password, now Im getting phone calls with 2 factor...
hacking: security in practice
Searching for a script
I am looking for a script to use in an online 2D MMO RPG where you can basically run dungeons automatically. Everyone who is willing to guide please let me know
submitted by /u/Ommarley
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Searching for a script
I am looking for a script to use in an online 2D MMO RPG where you can basically run dungeons automatically. Everyone who is willing to guide please let me know
submitted by /u/Ommarley
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
Searching for a script
I am looking for a script to use in an online 2D MMO RPG where you can basically run dungeons automatically. Everyone who is willing to guide...
Stepping Into Blockchains? It’s Time To Know the Basics…
There’s a huge fuss surrounding Blockchains nowadays. Many people talk about it but only a few have a real understanding of it.Continue reading on Bug Zero »
Read more...
There’s a huge fuss surrounding Blockchains nowadays. Many people talk about it but only a few have a real understanding of it.Continue reading on Bug Zero »
Read more...
Stepping Into Blockchains? It’s Time To Know the Basics…
https://blog.bugzero.io/stepping-into-blockchains-its-time-to-know-the-basics-6deaaf547e19?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
https://blog.bugzero.io/stepping-into-blockchains-its-time-to-know-the-basics-6deaaf547e19?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
Medium
Stepping Into Blockchains? It’s Time To Know the Basics…
There’s a huge fuss surrounding Blockchains nowadays. Many people talk about it but only a few have a real understanding of it.
There’s a huge fuss surrounding Blockchains nowadays. Many people talk about it but only a few have a real understanding of it.Continue reading on Bug Zero » (https://blog.bugzero.io/stepping-into-blockchains-its-time-to-know-the-basics-6deaaf547e19?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
___________________________
@hacking_Attack
@Hacking_Video
Medium
Stepping Into Blockchains? It’s Time To Know the Basics…
There’s a huge fuss surrounding Blockchains nowadays. Many people talk about it but only a few have a real understanding of it.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
OWASP Top 10 Vulnerabilities and How to Combat Them
https://cdn-images-1.medium.com/max/1366/1*TfirgDEHT1gYcrOXk4sCOA.jpeg
While the global economy and people’s social life have mostly moved into cyberspace, this has come with a number of concerns. According to…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
OWASP Top 10 Vulnerabilities and How to Combat Them
https://cdn-images-1.medium.com/max/1366/1*TfirgDEHT1gYcrOXk4sCOA.jpeg
While the global economy and people’s social life have mostly moved into cyberspace, this has come with a number of concerns. According to…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
OWASP Top 10 Vulnerabilities and How to Combat Them
While the global economy and people’s social life have mostly moved into cyberspace, this has come with a number of concerns. According to…
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Tuesday Morning Threat Report: Oct 25, 2022
https://cdn-images-1.medium.com/max/1050/0*g4X-h3ytB1FlvrfR.jpeg
The biggest hacks and industry news from the past 7 days.
Continue reading on System Weakness »
___________________________
@hacking_Attack
@Hacking_Video
Tuesday Morning Threat Report: Oct 25, 2022
https://cdn-images-1.medium.com/max/1050/0*g4X-h3ytB1FlvrfR.jpeg
The biggest hacks and industry news from the past 7 days.
Continue reading on System Weakness »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Tuesday Morning Threat Report: Oct 25, 2022
The biggest hacks and industry news from the past 7 days.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Android Pentesting 101 — Part 2
https://cdn-images-1.medium.com/max/600/0*4UIGpu305LV9LI2L
Welcome to Part 2 of Android Pentesting. This series is about how you can hack into Android and find vulnerabilities in it using various…
Continue reading on InfoSec Write-ups »
___________________________
@hacking_Attack
@Hacking_Video
Android Pentesting 101 — Part 2
https://cdn-images-1.medium.com/max/600/0*4UIGpu305LV9LI2L
Welcome to Part 2 of Android Pentesting. This series is about how you can hack into Android and find vulnerabilities in it using various…
Continue reading on InfoSec Write-ups »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Android Pentesting 101 — Part 2
Welcome to Part 2 of Android Pentesting. This series is about how you can hack into Android and find vulnerabilities in it using various…
hacking: security in practice
learned alot about hacking. what next?
Learned alot in college but what are the next steps? Do I dualboot kali and mess with the cmd line? Mess with scripts? I know about those websites like hack the box etc. But I want to have a more solid foundation. To build an understanding.
Also. Anyone have any fun project ideas? Maybe cracking a phones screen lock? Or snagging neighbors wifi? Lol jk... ish.
Lemme know your opinions. Ideas or experience!
submitted by /u/Stock-Philosophy8675
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
learned alot about hacking. what next?
Learned alot in college but what are the next steps? Do I dualboot kali and mess with the cmd line? Mess with scripts? I know about those websites like hack the box etc. But I want to have a more solid foundation. To build an understanding.
Also. Anyone have any fun project ideas? Maybe cracking a phones screen lock? Or snagging neighbors wifi? Lol jk... ish.
Lemme know your opinions. Ideas or experience!
submitted by /u/Stock-Philosophy8675
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
learned alot about hacking. what next?
Learned alot in college but what are the next steps? Do I dualboot kali and mess with the cmd line? Mess with scripts? I know about those...
Black Hat Ethical Hacking
Apple fixes new zero-day used in attacks against iPhones, iPads
___________________________
@hacking_Attack
@Hacking_Video
Apple fixes new zero-day used in attacks against iPhones, iPads
___________________________
@hacking_Attack
@Hacking_Video
Black Hat Ethical Hacking
Apple fixes new zero-day used in attacks against iPhones, iPads | Black Hat Ethical Hacking
Apple has fixed the ninth zero-day vulnerability used in attacks against iPhones since the start of the year.