Hacking Articles Tips Tricks Videos Tutorials
467 subscribers
65.7K photos
15 videos
157 files
131K 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
Photo
hacking: security in practice
learning metasploit importing modules.

Ok why are some modules and payloads right there like

https://vulners.com/metasploit/MSF:ILITIES/SUSE-CVE-2019-6470/

And others only have a link to the module like this one I cannot find the module to import? Cannot seem to localize them anywhere else neither.

MSF:ILITIES/REDHAT_LINUX-CVE-2021-25215

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

___________________________
@hacking_Attack
@Hacking_Video
\ | |
\ | |
\ |Hidden |
-|signature3 |
+-----------+
Validation Part To find who leaked the document, you just need to provide the leaked file to wholeaked, and it will reveal the responsible person by comparing the signatures in the database. |wholeaked|| |--------+ | | | || | b@gov |Hidden | +---------+| | |Signature2 | | | +-----------+ +---------+ ">+-----------+ +---------+
|Top Secret | |Signature|
|.pdf | +---------+|Database |
| | |utkusen/ || | Document leaked by
| |->|wholeaked|| |--------+
| | | || | b@gov
|Hidden | +---------+| |
|Signature2 | | |
+-----------+ +---------+

Demonstration Video
File Types and Detection Modes wholeaked can add the unique signature to different sections of a file. Available detection modes are given below: File Hash: SHA256 hash of the file. All file types are supported. Binary: The signature is directly added to the binary. Almost all file types are supported. Metadata: The signature is added to a metadata (https://www.kitploit.com/search/label/Metadata) section of a file. Supported file types: PDF, DOCX, XLSX, PPTX, MOV, JPG, PNG, GIF, EPS, AI, PSD Watermark: An invisible (https://www.kitploit.com/search/label/Invisible) signature is inserted into the text. Only PDF files are supported. Installation From Binary You can download the pre-built binaries from the releases (https://github.com/utkusen/wholeaked/releases/latest) page and run. For example: unzip wholeaked_0.1.0_macOS_amd64.zip ./wholeaked --help From Source Install Go on your system Run: go install github.com/utkusen/wholeaked@latest Installing Dependencies wholeaked requires exiftool for adding signatures to metadata section of files. If you don't want to use this feature, you don't need to install it. Debian-based Linux: Run apt install exiftool macOS: Run brew install exiftool Windows: Download exiftool (https://www.kitploit.com/search/label/ExifTool) from here https://exiftool.org/ and put the exiftool.exe in the same directory (https://www.kitploit.com/search/label/Directory) with wholeaked. wholeaked requires pdftotext for verifying watermarks inside PDF files. If you don't want to use this feature, you don't need to install it. Download "Xpdf command line (https://www.kitploit.com/search/label/Command%20Line) tools" for Linux, macOS or Windows from here: https://www.xpdfreader.com/download.html Extract the archive and navigate to bin64 folder. Copy the pdftotext (or pdftotext.exe) executable to the same folder with wholeaked For Debian Based Linux: Run apt install libfontconfig command. Usage Basic Usage wholeaked requires a project name -n, the path of the base file which the signatures will add -f and a list of target recipients -t Example command: ./wholeaked -n test_project -f secret.pdf -t targets.txt The targets.txt file should contain name and the e-mail address in the following format: Utku Sen,utku@utkusen.com
Bill Gates,bill@microsoft.com

___________________________
@hacking_Attack
@Hacking_Video
After execution is completed, the following unique files will be generated: test_project/files/Utku_Sen/secret.pdf
test_project/files/Bill_Gates/secret.pdf
By default, wholeaked adds signatures to all available places that are defined in the "File Types and Detection Modes" section. If you don't want to use a method, you can define it with a false flag. For example: ./wholeaked -n test_project -f secret.pdf -t targets.txt -binary=false -metadata=false -watermark=false Sending E-mails In order to send e-mails, you need to fill some sections in the CONFIG file. If you want to send e-mails via Sendgrid, type your API key to the SENDGRID_API_KEY section. If you want to send e-mails via AWS SES integration, you need to install awscli on your machine and add the required AWS key to it. wholeaked will read the key by itself. But you need to fill the AWS_REGION section in the config file. If you want to send e-mails via a SMTP server, fill the SMTP_SERVER, SMTP_PORT, SMTP_USERNAME, SMTP_PASSWORD sections. The other necessary fields to fill: EMAIL_TEMPLATE_PATH Path of the e-mail's body. You can specify use HTML or text format. EMAIL_CONTENT_TYPE Can be html or text EMAIL_SUBJECT Subject of the e-mail FROM_NAME From name of the e-mail FROM_EMAIL From e-mail of the e-mail To specify the sending method, you can use -sendgrid, -ses or -smtp flags. For example: ./wholeaked -n test_project -f secret.pdf -t targets.txt -sendgrid Validating a Leaked File You can use the -validate flag to reveal the owner of a leaked file. wholeaked will compare the signatures detected in the file and the database located in the project folder. Example: ./wholeaked -n test_project -f secret.pdf -validate Important: You shouldn't delete the project_folder/db.csv file if you want to use the file validation feature. If that file is deleted, wholeaked won't be able to compare the signatures.

Download Wholeaked (https://github.com/utkusen/wholeaked)

___________________________
@hacking_Attack
@Hacking_Video