Hacking Articles Tips Tricks Videos Tutorials
468 subscribers
65.9K photos
15 videos
157 files
132K links
Exploit
Pentesting
Hacking
Red Team
Blue Team
Kali Linux
Bug Bounty
Black Hat
Cyber security etc

@Hacking_Video
@Hacking_attack
Download Telegram
Hacking Articles Tips Tricks Videos Tutorials
ransom can only recover smaller files. The reason for this functionality is unclear, and it could be caused by poor coding, incorrect configuration, or to damage gamers’ files purposely. In this particular campaign, the threat actors are promoting text files…
ackhatethicalhacking.com/wp-content/uploads/2021/10/social_preview-scaled-90x90.jpg Sensitive data of 400,000 German students exposed by API flaw5 days ago
* https://www.blackhatethicalhacking.com/wp-content/uploads/2021/10/hacked-90x90.jpg Brutal WordPress plugin bug allows subscribers to wipe sites6 days ago
* https://www.blackhatethicalhacking.com/wp-content/uploads/2021/10/ezgif.com-gif-maker-5-90x90.jpg Hackers used billing software zero-day to deploy ransomware1 week ago
* https://www.blackhatethicalhacking.com/wp-content/uploads/2021/10/ezgif.com-gif-maker-4-90x90.jpg Popular NPM library hijacked to install password-stealers, miners1 week ago
* https://www.blackhatethicalhacking.com/wp-content/uploads/2021/10/youtube-logo-90x90.jpg Massive campaign uses YouTube to push password-stealing malware2 weeks ago
* https://www.blackhatethicalhacking.com/wp-content/uploads/2021/10/ezgif.com-gif-maker-3-90x90.jpg Google: YouTubers’ accounts hijacked with cookie-stealing malware2 weeks ago
* https://www.blackhatethicalhacking.com/wp-content/uploads/2021/10/ezgif.com-gif-maker-2-90x90.jpg Acer hacked twice in a week by the same threat actor2 weeks ago
* https://www.blackhatethicalhacking.com/wp-content/uploads/2021/10/ezgif-6-e5d8ed29a830-90x90.jpg Credit card PINs can be guessed even when covering the ATM pad2 weeks ago
The post ‘Trojan Source’ attack method can hide bugs into open-source code first appeared on Black Hat Ethical Hacking.

___________________________
@hacking_Attack
@Hacking_Video
aDLL is a binary analysis (https://www.kitploit.com/search/label/Binary%20Analysis) tool focused on the automatic discovery (https://www.kitploit.com/search/label/Discovery) of DLL Hijacking (https://www.kitploit.com/search/label/Hijacking) vulnerabilities. The tool analyzes the image of the binary loaded in memory to search for DLLs loaded at load-time and makes use of the Microsoft Detours library to intercept calls to the LoadLibrary/LoadLibraryEx functions to analyze the DLLs loaded at run-time. The purpose is to obtain a list of DLLs that are not found by the executable in those folders where they are searched.
Getting Started
To start using aDLL a compiled executable is available in the Binaries folder. It is recommended to use the version whose architecture (32-bit or 64-bit) matches the version of the executable to be analyzed. For the correct functioning of the tool, it is necessary that the DLLs "hook32", "hook64", "informer32" and "informer64" are located in the same directory as the executable aDLL.exe.
Prerequisites
aDLL has been developed and tested on Windows 10 (https://www.kitploit.com/search/label/Windows%2010) systems. If the system is old and/or Visual Studio is not installed, it is possible that the tool will throw an error like "VCRUNTIME140.dll not found". In this case the Visual C++ Redistributable update must be installed. Update can be found here: https://www.microsoft.com/es-ES/download/details.aspx?id=49984.
Compilation
To modify/recompile the tool it is recommended the use of Visual Studio 2015 or later. The Visual Studio solution consists of three projects: aDLL, Hook e Informer. _ -aDLL: must be compiled as an executable. If linking errors occur, it will be necessary to add the shlwapi.lib library using the Visual Studio linker as an additional dependency._ _ -Hook: must be compiled as a DLL with the same architecture as the executable to be analyzed. The resulting Hook file must be renamed to hook32.dll or hook64.dll as appropriate. If you wish to analyze executables of both architectures it will be necessary to have both DLLs in the same directory as aDLL.exe._ _ -Informer: same as Hook. Must be compiled as a DLL and renamed to informer32.dll or informer64.dll._
Usage
The tool has a -h option to print a brief description of the available options on the screen.. .\aDLL -h
As a common example of usage aDLL should receive at least the path to the executable to be analyzed. .\aDLL -e "C:\System32\notepad.exe"
OPTIONS: -h Displays the tool's help with a brief description of each option.
-e Specifies the path to the executable to be analyzed by aDLL.
-t Specifies a path to a text file with a list of executable paths.
-o Specifies a path to a directory in which a report will be stored for each executable scanned.
-m Searches for the executable's manifest and displays it on the screen. aDLL searches for the manifest embedded in the binary, it will not find the manifest if it exists as an external file.
-w Defines the number of seconds the executable process will be kept open while searching for DLLs loaded at runtime. The default time is 20 seconds.
-aDLL will automatically test if a malicious DLL is executed by impersonating the legitimate DLL in the search order if a candidate DLL has been found.
-d Used in conjunction with the -a option, this option allows you to select a path to a DLL that will be used as the malicious DLL.
-r Each DLL imported by the e xecutable can in turn import other DLLs as dependencies. A search "n" times recursive will be made on all those DLLs found by aDLL that are not redirected (ApiSetSchema or WinSxS) and do not belong to the list of Known DLL of the system.

Acknowledgments
Hook DLL is based on the idea of ctxis's DLLHSC: https://github.com/ctxis/DLLHSC
Contact
ideaslocas@telefonica.com (mailto:ideaslocas@telefonica.com)
aDLL

___________________________
@hacking_Attack
@Hacking_Video
you can find more information about licenses at: licenses.txt THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. WHENEVER YOU MAKE A CONTRIBUTION TO A REPOSITORY CONTAINING NOTICE OF A LICENSE, YOU LICENSE YOUR CONTRIBUTION UNDER THE SAME TERMS, AND YOU AGREE THAT YOU HAVE THE RIGHT TO LICENSE YOUR CONTRIBUTION UNDER THOSE TERMS. IF YOU HAVE A SEPARATE AGREEMENT TO LICENSE YOUR CONTRIBUTIONS UNDER DIFFERENT TERMS, SUCH AS A CONTRIBUTOR LICENSE AGREEMENT, THAT AGREEMENT WILL SUPERSEDE.

Download aDLL (https://github.com/ideaslocas/aDLL)

___________________________
@hacking_Attack
@Hacking_Video
https://a.thumbs.redditmedia.com/zphGs7fvmoFOvxoScR1KrT0FznlLQhn2OYZ0bc6ZiL8.jpg I've written simple python code as shown in this tutorial and converted it to exe using pyinstaller.

https://cybersecthreat.com/2020/07/28/extract-password-from-exe-part1/

However, when I attached "my_secret_pyinstaller.exe" to x64dbg, I did not see "python36.dll" in “Symbols” tab.

https://preview.redd.it/3prjz2czr5x71.png?width=776&format=png&auto=webp&s=f0f52491c4f9b1b9313c3c50f8ab0c3c77625fc5

What is the right way to do this? Please help.

submitted by /u/w0lfcat
[link] [comments]
hacking: security in practice
Email Password Cracking

Hi does anyone have experience in retrieving account due to forget password without 2-step verification. Account got locked, called for Microsoft for help and filled in the account recovery form countless times, however the automated system has determined that the information was not sufficient to unlock account. Please assist thanks!

submitted by /u/Plastic-Ad-8750
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
Windows 7 Admin Password recovery

Hey people,

I just started a new job at an event technician company and they have trouble with their Admin (hes blocking every communication attempt and never shows up to work). Their problem is: No one has Admin Access, besides that guy. So they can't retrieve their data from their own server and a lot more. To get everything back under their control without having to start legal discussions with their IT guy, they'd like to solve the problem differently, meaning changing the admin pw themself or atleast create a new account giving them back access to their data. It is not clear if there is an AD running in the background, couldn't figure that out so far 100%.

The machines are running Windows 7 anf everything I attempted didn't work so far. I can't start up Mimikaz. I can't export the SAM folder from the registry. I can't safe boot with commandprompt, neither was I able to create a new Account or add a known Account to the Admin Group and absolutly I'm not able to change the password of the existing Admin Account.

Does anyone know other options I could try? If you need more informations I'll try to provide them, just ask in the comments ^

Thank you for your time, I hope you have a great day Luy

submitted by /u/Luymara
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video
Dark Reading: Attacks/Breaches
How Hackers Are Targeting Cryptocurrency

Crypto exchanges that want to maintain credibility must implement some of the same "know your customer" controls used by banks and similar institutions.
hacking: security in practice
Youtube Views Bot

Where can I get a script for this one? For school purposes

submitted by /u/KeyLoose8977
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video