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: security in practice
PC App says "Using screen recording software is not allowed"

My Educational Organisation has developed an app which only opens when all other softwares are closed and on the main page it says that, " Screen recording would be detected and your account will be reported to the institute."
The problem is that the lectures we get are only available on the app for a limited time, but I want to keep it so that I can access it later also. I have my own authorised account and dont have any intent of sharing the videos. What is the safest way to screen record it without even a chance of them noticing.

I tried to search the internet about the ways in which apps detect they are being recorded but couldnt find any good info. So any such sources of info would also be appreciated.

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

___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Photo
hacking: security in practice
Breaching into a wifi that is restricted to only specific computers?

My school wifi has the thing where you can connect using the same login you have for the school google account, and i have mine and it works on mobile devices and computers that belong to the school, i followed This Guide, Is it possible to make the wifi think my laptop is my chromebook?

Any help on that?

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

___________________________
@hacking_Attack
@Hacking_Video
Deep Web
Finding News in TOR

I‘m new to the deepweb, and started by using the TOR. I have a hard time using it and wondered how access sites where you can find information from countries censoring the internet. I‘m not looking for some Newspaper, but more about something like a blog of people actually living there. I would appreciate every help on finding such information. Ty

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

___________________________
@hacking_Attack
@Hacking_Video
All about Information disclosure

What is Information disclosure ?Continue reading on InfoSec Write-ups »
Read more...
Duplicut - Remove Duplicates From MASSIVE Wordlist, Without Sorting It (For Dictionary-Based Password Cracking)

Quickly dedupe massive wordlists, without changing the order Created by nil0x42 and contributors Overview Modern password wordlist creation usually implies concatenating multiple data sources. Ideally, most probable passwords should stand at start of the wordlist, so most common passwords are cracked instantly. With existing dedupe tools you are forced to choose if you prefer to preserve the order OR handle massive wordlists. Unfortunately, wordlist creation requires both: So i wrote duplicut in highly optimized C to address this very specific needQuick start git clone https://github.com/nil0x42/duplicutcd duplicut/ && make./duplicut wordlist.txt -o clean-wordlist.txt Options Features: Handle massive wordlists, even those whose size exceeds available RAM Filter lines by max length (-l option) Can remove lines containing non-printable ASCII chars (-p option) Press any key to show program status at runtime. Implementation: Written in pure C code, designed to be fast Compressed hashmap items on 64 bit platforms Multithreading support TODO: Use huge memory pages to increase performance Limitations: Any line longer than 255 chars is ignored Heavily tested on Linux x64, mostly untested on other platforms. Technical Details  1- Memory optimized: An uint64 is enough to index lines in hashmap, by packing size info within pointer's extra bits:  2- Massive file handling: If whole file can't fit in memory, it is split into virtual chunks, then each one is tested against next chunks. So complexity is equal to th triangle number: Throubleshotting If you find a bug, or something doesn't work as expected, please compile duplicut in debug mode and post an issue with attached output: # debug level can be from 1 to 4make debug level=1./duplicut OPTIONS 2>&1 | tee /tmp/duplicut-debug.log Download Duplicut
Read more...

___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Photo
KitPloit - PenTest Tools!
Duplicut - Remove Duplicates From MASSIVE Wordlist, Without Sorting It (For Dictionary-Based Password Cracking)

https://1.bp.blogspot.com/-Ugs55xgkowc/YIxcmN9q-SI/AAAAAAAAWDI/4JSoTFzP-eorJnPWw3qMTV272B2nMpLxACNcBGAsYHQ/w640-h256/duplicut_5_1-comparison.png Quickly dedupe massive wordlists, without changing the order Created by nil0x42 and contributors OverviewModern password wordlist creation usually implies concatenating multiple data sources.

Ideally, most probable passwords should stand at start of the wordlist, so most common passwords are cracked instantly.

With existing dedupe tools you are forced to choose if you prefer to preserve the order OR handle massive wordlists.

Unfortunately, wordlist creation requires both: https://1.bp.blogspot.com/-n6o17898PN4/YIxc0tQhdxI/AAAAAAAAWDM/HYqHBOX_tdYQHFbxqR1Qvzd12732U0icgCNcBGAsYHQ/w640-h256/duplicut_5_1-comparison.png So i wrote duplicut in highly optimized C to address this very specific need Quick startgit clone https://github.com/nil0x42/duplicut
cd duplicut/ && make
./duplicut wordlist.txt -o clean-wordlist.txt
Optionshttps://1.bp.blogspot.com/-mf2ncGUHwOU/YIxc7YD_xRI/AAAAAAAAWDU/fNG2CpZFBO8GdHcmS6OLuN5oauBFNEj1ACNcBGAsYHQ/w640-h236/duplicut_6_4-help.png *
Features:

* Handle massive wordlists, even those whose size exceeds available RAM
* Filter lines by max length (-l option)
* Can remove lines containing non-printable ASCII chars (-p option)
* Press any key to show program status at runtime.

*
Implementation:

* Written in pure C code, designed to be fast
* Compressed hashmap items on 64 bit platforms
* Multithreading support
* [TODO]: Use huge memory pages to increase performance

*
Limitations:

* Any line longer than 255 chars is ignored
* Heavily tested on Linux x64, mostly untested on other platforms. Technical Details
1- Memory optimized:
An uint64is enough to index lines in hashmap, by packing sizeinfo within pointer's extra bits: https://1.bp.blogspot.com/-ghJnDIQ03fc/YIxdKOO0HsI/AAAAAAAAWDc/m1JHHxUrCGkQQdTIqNeULnGrN-JwfA2IgCNcBGAsYHQ/w640-h390/duplicut_7_2-line-struct.png2- Massive file handling:If whole file can't fit in memory, it is split into https://camo.githubusercontent.com/816795a4b9032e5045eb7ced62ae9eccee75a4d3ce6d796233c315551894bd32/687474703a2f2f7777772e736369776561766572732e6f72672f74657832696d672e7068703f66733d31352665713d6e virtual chunks, then each one is tested against next chunks.

So complexity is equal to https://camo.githubusercontent.com/816795a4b9032e5045eb7ced62ae9eccee75a4d3ce6d796233c315551894bd32/687474703a2f2f7777772e736369776561766572732e6f72672f74657832696d672e7068703f66733d31352665713d6e th triangle number: https://1.bp.blogspot.com/-YaOXmDO4oGI/YIxdQvJJVLI/AAAAAAAAWDk/8YbBZfUze54-h78SErbUW9mtvPfFB2SagCNcBGAsYHQ/w640-h388/duplicut_10_3-chunked-processing.png ThroubleshottingIf you find a bug, or something doesn't work as expected, please compile duplicut in debug mode and post an issue with attached output: # debug level can be from 1 to 4
make debug level=1
./duplicut [OPTIONS] 2>&1 | tee /tmp/duplicut-debug.log
Download Duplicut
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking Articles
Wonderland TryHackMe Walkthrough

Today we’re going to solve another boot2root challenge called “Wonderland “. It’s available at TryHackMe for penetration testing practice. This lab is of medium difficultly if we have the right basic knowledge to break the labs and are attentive to all the details we find during the reconnaissance. The credit

The post Wonderland TryHackMe Walkthrough appeared first on Hacking Articles.

___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
I am confused

I received a video on discord and watched it , after that i was told that someone had acces to my pc from watching that video. Is it even posible ? Should i reinstall my windows ?

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

___________________________
@hacking_Attack
@Hacking_Video