Hacking Articles Tips Tricks Videos Tutorials
471 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
https://b.thumbs.redditmedia.com/jNXjxV7Xx0Zv1q3QxzdCze-qf17fgEs7Ut3avtGLuhY.jpg So my email was hacked and has since been secured(changed about a month ago) but automatic emails are continually sent out even though I require authentication to access my email. Is there any way to stop the emails from being sent(the account is a hotmail account)?





edit: added pic

submitted by /u/dashdtp
[link] [comments]
hacking: security in practice
is it possible to decompile a .dll file?

im trying to decompile a .dll file for a really old Tech
but No matter how i tried i failed
I tried searching in google but no luck
This is the dll file btw
is it possible to decompile it?

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

___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
Is there a way in Python to create a full HTTP request without sending it?

I want to create full HTTP requests with the method, URL, headers, and data for HTTP request smuggling. I've tried from requests import Requestbut that seems to only give me pieces and not a whole printable request string. Is there a way to get a full HTTP request in text?

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

___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
Is changing email password enough after email was hacker by launching an .exe file ?

Hi

A Friend launched a .exe file (adobe pluging downloaded from a youtube video)

Two of his email were hacked (one from outlook on google chrome and the other in the email app on windows 10)

We changed both email password

His epic game account was stolen (email and password changed by the "hacker"), We sent a mail to epic game support

His steam account password was changed but we changed it back.



Windows defender doesn't detect anything on the pc (complete scan)



Is it enough ?



How did he get his email password, because if it's because of the .exe
file, can't the guy just do it again ? The virus may be still on his pc
even if windows defender doesn't detect it.

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

___________________________
@hacking_Attack
@Hacking_Video
Searches through git repositories (https://www.kitploit.com/search/label/Repositories) for secrets, digging deep into commit history and branches. This is effective at finding secrets accidentally committed.
Join The Slack Have questions? Feedback? Jump in slack and hang out with me https://join.slack.com/t/trufflehog-community/shared_invite/zt-pw2qbi43-Aa86hkiimstfdKH9UCpPzQ NEW truffleHog previously functioned by running entropy checks on git diffs. This functionality still exists, but high signal regex checks have been added, and the ability to suppress entropy checking has also been added. truffleHog --regex --entropy=False https://github.com/dxa4481/truffleHog.git
or truffleHog file:///user/dxa4481/codeprojects/truffleHog/
With the --include_paths and --exclude_paths options, it is also possible to limit scanning to a subset of objects in the Git history by defining regular expressions (https://www.kitploit.com/search/label/Regular%20Expressions) (one per line) in a file to match the targeted object paths. To illustrate, see the example include and exclude files below: include-patterns.txt: src/
# lines beginning with "#" are treated as comments and are ignored
gradle/
# regexes must match the entire path, but can use python's regex syntax for
# case-insensitive matching and other advanced options
(?i).*\.(properties|conf|ini|txt|y(a)?ml)$
(.*/)?id_[rd]sa$ exclude-patterns.txt: (.*/)?\.classpath$
.*\.jmx$
(.*/)?test/(.*/)?resources/ These filter files could then be applied by: trufflehog --include_paths include-patterns.txt --exclude_paths exclude-patterns.txt file://path/to/my/repo.git With these filters, issues found in files in the root-level src directory (https://www.kitploit.com/search/label/Directory) would be reported, unless they had the .classpath or .jmx extension, or if they were found in the src/test/dev/resources/ directory, for example. Additional usage information is provided when calling trufflehog with the -h or --help options. These features help cut down on noise, and makes the tool easier to shove into a devops pipeline.

___________________________
@hacking_Attack
@Hacking_Video