Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Ethical Hacking
https://cdn-images-1.medium.com/max/2600/1*zfobmB4V6skUaUDKsLsugg.jpeg
Hello friends,
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Ethical Hacking
https://cdn-images-1.medium.com/max/2600/1*zfobmB4V6skUaUDKsLsugg.jpeg
Hello friends,
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Ethical Hacking
Hello friends,
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Vigilante Cyber Justice
https://cdn-images-1.medium.com/max/777/1*uwwmmBEGtaOeUVMAo9lZxw.png
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Vigilante Cyber Justice
https://cdn-images-1.medium.com/max/777/1*uwwmmBEGtaOeUVMAo9lZxw.png
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Why Vigilante Cyber Justice Is a Bad Idea
Watching the crime app Citizen debacle and attempts to build a privatized police force has been horrifying. Not only is it dystopian, it’s just plain stupid. Years back when I was working with law…
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Ethical Hacking
https://cdn-images-1.medium.com/max/2600/1*0Dnd9woqoHQ7qyx9mk1C6w.jpeg
Hacking is the process of finding vulnerabilities in a system and using these found vulnerabilities to gain unauthorized access into the…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Ethical Hacking
https://cdn-images-1.medium.com/max/2600/1*0Dnd9woqoHQ7qyx9mk1C6w.jpeg
Hacking is the process of finding vulnerabilities in a system and using these found vulnerabilities to gain unauthorized access into the…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Ethical Hacking
Hacking is the process of finding vulnerabilities in a system and using these found vulnerabilities to gain unauthorized access into the…
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
South Koreans lost $5 billion in 4 years due to crypto scammers
https://cdn-images-1.medium.com/max/750/0*P40uNiU5qnqrbURo.jpg
Over the past four years, South Koreans have lost more than $5 billion as a result of cryptocurrency scams. This is also partly related to…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
South Koreans lost $5 billion in 4 years due to crypto scammers
https://cdn-images-1.medium.com/max/750/0*P40uNiU5qnqrbURo.jpg
Over the past four years, South Koreans have lost more than $5 billion as a result of cryptocurrency scams. This is also partly related to…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
South Koreans lost $5 billion in 4 years due to crypto scammers
Over the past four years, South Koreans have lost more than $5 billion as a result of cryptocurrency scams. This is also partly related to…
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
SQL injection — Entendendo a vulnerabilidade na prática
https://cdn-images-1.medium.com/max/830/0*usab-hwfWWOdCg22.png
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
SQL injection — Entendendo a vulnerabilidade na prática
https://cdn-images-1.medium.com/max/830/0*usab-hwfWWOdCg22.png
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
SQL injection — Entendendo a vulnerabilidade na prática
SQL injection ou injeção SQL é uma vulnerabilidade de segurança que da permissão a um invasor de fazer consultas no banco de dados de uma aplicação, oque pode ser usado para ter acesso a informações…
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Los hackers de SolarWinds apuntan a los think tanks con una nueva puerta trasera.
https://cdn-images-1.medium.com/max/698/0*cB1H6-IDHWc9HwuZ
PUBLICADO EN 28 MAYO, 2021 POR EHACKING
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Los hackers de SolarWinds apuntan a los think tanks con una nueva puerta trasera.
https://cdn-images-1.medium.com/max/698/0*cB1H6-IDHWc9HwuZ
PUBLICADO EN 28 MAYO, 2021 POR EHACKING
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Los hackers de SolarWinds apuntan a los think tanks con una nueva puerta trasera.
PUBLICADO EN 28 MAYO, 2021 POR EHACKING
Hacking Articles Tips Tricks Videos Tutorials
Photo
KitPloit - PenTest Tools!
HookDump - Security Product Hook Detection
https://1.bp.blogspot.com/-QK39bYgsM0w/YKr01qjQkBI/AAAAAAAAWR4/a26Fxld8i3Qb3slcqNxbfrG5u29xrgXzgCNcBGAsYHQ/w640-h342/HookDump.png
EDR function hook dumping
Please refer to the Zeroperil blog post for more information https://zeroperil.co.uk/hookdump/
Building source
* In order to build this you will need Visual Studio 2019 (community edition is fine) and CMake. The batch file Configure.bat will create two build directories with Visual Studio solutions.
* The project may build with MinGW with the correct CMake command line, this is untested YMMV.
* There is a dependency on zydis disassembler, so be sure to update the sub-modules in git before configuring the project.
* There is a 32bit and 64bit project, you may find that EDR's hook different functions in 32/64 bit so building and running both executables may provide more complete results
Notes
* Some EDRs replace the WOW stub in the TEB structure (specifically Wow32Reserved) in order to hook system calls for 32 bit binaries. In this case you may see zero hooks since no jump instructions are present in NTDLL. Most likley you will see hooks in the x64 version as the syscall instruction is used for system calls instead of a WOW stub
* We have noted that Windows Defender does not use any user mode hooks
* This tool is designed to be run as a standard user, elevation is not required
Hook Types Detected
JMP
A jump instruction has been patched into the function to redirect execution flow
WOW
Detection of the WOW64 syscall stub being hooked, which allows filtering of all system calls
EAT
The address in the export address table does not match the address in the export address table in the copy on disc
GPA
GetProcAddress hook, an experimental feature, this is only output in verbose mode, when the result of GetProcAddress does not match the manually resolved function address. YYMV with this and some care should be taken to verify the results.
Verification
The only way to truly verify the correct working of the program is to check in a debugger if hooks are present. If you are getting a zero hooks result and are expecting to see something different, then first verify this in a debugger and please get in touch.
Download HookDump
___________________________
@hacking_Attack
@Hacking_Video
HookDump - Security Product Hook Detection
https://1.bp.blogspot.com/-QK39bYgsM0w/YKr01qjQkBI/AAAAAAAAWR4/a26Fxld8i3Qb3slcqNxbfrG5u29xrgXzgCNcBGAsYHQ/w640-h342/HookDump.png
EDR function hook dumping
Please refer to the Zeroperil blog post for more information https://zeroperil.co.uk/hookdump/
Building source
* In order to build this you will need Visual Studio 2019 (community edition is fine) and CMake. The batch file Configure.bat will create two build directories with Visual Studio solutions.
* The project may build with MinGW with the correct CMake command line, this is untested YMMV.
* There is a dependency on zydis disassembler, so be sure to update the sub-modules in git before configuring the project.
* There is a 32bit and 64bit project, you may find that EDR's hook different functions in 32/64 bit so building and running both executables may provide more complete results
Notes
* Some EDRs replace the WOW stub in the TEB structure (specifically Wow32Reserved) in order to hook system calls for 32 bit binaries. In this case you may see zero hooks since no jump instructions are present in NTDLL. Most likley you will see hooks in the x64 version as the syscall instruction is used for system calls instead of a WOW stub
* We have noted that Windows Defender does not use any user mode hooks
* This tool is designed to be run as a standard user, elevation is not required
Hook Types Detected
JMP
A jump instruction has been patched into the function to redirect execution flow
WOW
Detection of the WOW64 syscall stub being hooked, which allows filtering of all system calls
EAT
The address in the export address table does not match the address in the export address table in the copy on disc
GPA
GetProcAddress hook, an experimental feature, this is only output in verbose mode, when the result of GetProcAddress does not match the manually resolved function address. YYMV with this and some care should be taken to verify the results.
Verification
The only way to truly verify the correct working of the program is to check in a debugger if hooks are present. If you are getting a zero hooks result and are expecting to see something different, then first verify this in a debugger and please get in touch.
Download HookDump
___________________________
@hacking_Attack
@Hacking_Video
KitPloit - PenTest & Hacking Tools
HookDump - Security Product Hook Detection
Deep Web
Do you have some good antivirus so I can go on the deep web safely?
submitted by /u/sophiabreton
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Do you have some good antivirus so I can go on the deep web safely?
submitted by /u/sophiabreton
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
Do you have some good antivirus so I can go on the deep web safely?
Posted in r/deepweb by u/sophiabreton • 1 point and 0 comments
The beauty of chaining client-side bugs
This is part of a report of a bug that I sent back in 2020, changing of course the program name for obvious reasons.Continue reading on Medium »
Read more...
This is part of a report of a bug that I sent back in 2020, changing of course the program name for obvious reasons.Continue reading on Medium »
Read more...
The beauty of chaining client-side bugs
https://master-sec.medium.com/the-beauty-of-chaining-client-side-bugs-759e1091eabf?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
https://master-sec.medium.com/the-beauty-of-chaining-client-side-bugs-759e1091eabf?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
Medium
The beauty of chaining client-side bugs
This is part of a report of a bug that I sent back in 2020, changing of course the program name for obvious reasons.
This is part of a report of a bug that I sent back in 2020, changing of course the program name for obvious reasons.Continue reading on Medium » (https://master-sec.medium.com/the-beauty-of-chaining-client-side-bugs-759e1091eabf?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
___________________________
@hacking_Attack
@Hacking_Video
Medium
The beauty of chaining client-side bugs
This is part of a report of a bug that I sent back in 2020, changing of course the program name for obvious reasons.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Hacking immutable in python
https://cdn-images-1.medium.com/max/1276/1*uTP8LO2Pfxu0hEe3TvAXpg.png
Immutability is a great concept to simplify coding where memory is not a bottleneck. Immutable object is, basically, a constant that you…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Hacking immutable in python
https://cdn-images-1.medium.com/max/1276/1*uTP8LO2Pfxu0hEe3TvAXpg.png
Immutability is a great concept to simplify coding where memory is not a bottleneck. Immutable object is, basically, a constant that you…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Hacking immutable in python
Immutability is a great concept to simplify coding where memory is not a bottleneck. Immutable object is, basically, a constant that you…