Run the listener (https://www.kitploit.com/search/label/Listener) and upload the video to Youtube
python3 main.py
The listener will check the Youtube channel every 300 seconds by default (can be updated in config.py). First the video is uploaded:
___________________________
@hacking_Attack
@Hacking_Video
python3 main.py
The listener will check the Youtube channel every 300 seconds by default (can be updated in config.py). First the video is uploaded:
___________________________
@hacking_Attack
@Hacking_Video
KitPloit - PenTest & Hacking Tools
Leading source of security tools, hacking tools, cybersecurity and network security. Learn about new tools and updates in one place.
After finding there is a new video in the channel (https://www.youtube.com/watch?v=ZPQ4drX35bU), it is downloaded and the commands are executed:
___________________________
@hacking_Attack
@Hacking_Video
___________________________
@hacking_Attack
@Hacking_Video
YouTube
Hello again Github!!!
Configuration
Update the config.py file:channel_id (Mandatory!!!): Get your Youtube channel ID from here (https://www.youtube.com/account_advanced).api_key (Mandatory!!!): To get the API key create an application and generate the key from here (https://console.cloud.google.com/apis/credentials).image_type (Optional. Default: "qr_aes"): Different types of images for the video."cleartext" creates images with the words of the commands."qr" creates QR codes with the commands."qr_aes" creates QR codes with the commands encrypted with AES.upload_seconds_delay (Optional. Default: 300): Seconds delay until checking if a new video has been uploaded.debug (Optional. Default: True): Print messages or not.aes_key (Optional. Default: "covert-tube_2021"): Key for AES encryption, used in the "qr_aes" option.generated_video_path (Optional. Default: "output.avi"): Path of video generated with generate_video.py.downloaded_video_path (Optional. Default: "/tmp/test.mp4"): Path where the new video will be downloaded.temp_folder (Optional. Default: "/tmp/"): Path where images of every frame from the video are stored, with the format image_X.png.
Installing dependencies
For all the project:pip3 install Pillow opencv-python youtube_dl pytesseract pyqrcode pypng pyzbar pycrypto
For only the "cleartext" option (OCR):pip3 install Pillow opencv-python youtube_dl pytesseract
For only the QR without encryption (https://www.kitploit.com/search/label/Encryption) option:pip3 install Pillow opencv-python youtube_dl pyqrcode pypng pyzbar
For only the QR with AES encryption option:pip3 install Pillow opencv-python youtube_dl pyqrcode pypng pyzbar pycrypto
Creating a standalone binary
pyinstaller --onefile main.py
cp dist/main covert-tube
rm -rf dist build
rm main.spec
Motivation
Lately I have been reading about malware using Youtube for controlling their setting remotely. For example, Casbaneiro abuses YouTube to store its C&C server domains. Each video on the channels used by the threat actor contains a description and at the end of these there is a link to a bogus Facebook (https://www.kitploit.com/search/label/Facebook) or Instagram (https://www.kitploit.com/search/label/Instagram) url containing the C&C server domain (Welivesecurity blog (https://www.welivesecurity.com/2019/10/03/casbaneiro-trojan-dangerous-cooking/)). A second example is Numando, which abuses it by encrypting the data in the title of the Youtube videos (other Welivesecurity blog (https://www.welivesecurity.com/2021/09/17/numando-latam-banking-trojan/)).Knowing this I decided to create a PoC to test the control of remote systems uploading videos to Youtube but, instead of using the title or the description, using the content of the video. It allows to execute any command, but it could be used to change some settings remotely. So this is just a PoC, use it for educational purposes!
Download Covert-Tube (https://github.com/ricardojoserf/covert-tube)
___________________________
@hacking_Attack
@Hacking_Video
Update the config.py file:channel_id (Mandatory!!!): Get your Youtube channel ID from here (https://www.youtube.com/account_advanced).api_key (Mandatory!!!): To get the API key create an application and generate the key from here (https://console.cloud.google.com/apis/credentials).image_type (Optional. Default: "qr_aes"): Different types of images for the video."cleartext" creates images with the words of the commands."qr" creates QR codes with the commands."qr_aes" creates QR codes with the commands encrypted with AES.upload_seconds_delay (Optional. Default: 300): Seconds delay until checking if a new video has been uploaded.debug (Optional. Default: True): Print messages or not.aes_key (Optional. Default: "covert-tube_2021"): Key for AES encryption, used in the "qr_aes" option.generated_video_path (Optional. Default: "output.avi"): Path of video generated with generate_video.py.downloaded_video_path (Optional. Default: "/tmp/test.mp4"): Path where the new video will be downloaded.temp_folder (Optional. Default: "/tmp/"): Path where images of every frame from the video are stored, with the format image_X.png.
Installing dependencies
For all the project:pip3 install Pillow opencv-python youtube_dl pytesseract pyqrcode pypng pyzbar pycrypto
For only the "cleartext" option (OCR):pip3 install Pillow opencv-python youtube_dl pytesseract
For only the QR without encryption (https://www.kitploit.com/search/label/Encryption) option:pip3 install Pillow opencv-python youtube_dl pyqrcode pypng pyzbar
For only the QR with AES encryption option:pip3 install Pillow opencv-python youtube_dl pyqrcode pypng pyzbar pycrypto
Creating a standalone binary
pyinstaller --onefile main.py
cp dist/main covert-tube
rm -rf dist build
rm main.spec
Motivation
Lately I have been reading about malware using Youtube for controlling their setting remotely. For example, Casbaneiro abuses YouTube to store its C&C server domains. Each video on the channels used by the threat actor contains a description and at the end of these there is a link to a bogus Facebook (https://www.kitploit.com/search/label/Facebook) or Instagram (https://www.kitploit.com/search/label/Instagram) url containing the C&C server domain (Welivesecurity blog (https://www.welivesecurity.com/2019/10/03/casbaneiro-trojan-dangerous-cooking/)). A second example is Numando, which abuses it by encrypting the data in the title of the Youtube videos (other Welivesecurity blog (https://www.welivesecurity.com/2021/09/17/numando-latam-banking-trojan/)).Knowing this I decided to create a PoC to test the control of remote systems uploading videos to Youtube but, instead of using the title or the description, using the content of the video. It allows to execute any command, but it could be used to change some settings remotely. So this is just a PoC, use it for educational purposes!
Download Covert-Tube (https://github.com/ricardojoserf/covert-tube)
___________________________
@hacking_Attack
@Hacking_Video
KitPloit - PenTest & Hacking Tools
Leading source of security tools, hacking tools, cybersecurity and network security. Learn about new tools and updates in one place.
[my bug boutry notes ]
https://medium.com/@onepython7/my-bug-boutry-notes-50879a1dd932?source=rss------bug_bounty-5
*wesite testing rolse *Continue reading on Medium » (https://medium.com/@onepython7/my-bug-boutry-notes-50879a1dd932?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
https://medium.com/@onepython7/my-bug-boutry-notes-50879a1dd932?source=rss------bug_bounty-5
*wesite testing rolse *Continue reading on Medium » (https://medium.com/@onepython7/my-bug-boutry-notes-50879a1dd932?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
Medium
[my bug boutry notes ]
*wesite testing rolse *
The answer is YES if you get a good BOUNTY for catching those “BUGS”.Continue reading on Medium » (https://vanshika-nehra23.medium.com/can-bugs-ever-be-useful-82c4258f9ec5?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
___________________________
@hacking_Attack
@Hacking_Video
Medium
Can Bugs ever be useful?
The answer is YES if you get a good BOUNTY for catching those “BUGS”.
Can Bugs ever be useful?
The answer is YES if you get a good BOUNTY for catching those “BUGS”.Continue reading on Medium »
Read more...
The answer is YES if you get a good BOUNTY for catching those “BUGS”.Continue reading on Medium »
Read more...
Black Hat Ethical Hacking
Microsoft is disabling Excel 4.0 macros by default to protect users
___________________________
@hacking_Attack
@Hacking_Video
Microsoft is disabling Excel 4.0 macros by default to protect users
___________________________
@hacking_Attack
@Hacking_Video
Black Hat Ethical Hacking
Microsoft is disabling Excel 4.0 macros by default to protect users | Black Hat Ethical Hacking
Microsoft will soon begin disabling Excel 4.0 XLM macros by default in Microsoft 365 tenants to protect customers from malicious documents.
Covert-Tube - Youtube As Covert-Channel - Control Systems Remotely And Execute Commands By Uploading Videos To Youtube
A program to control systems remotely by uploading videos to Youtube using Python to create the videos and the listener, emulating some malware I was reading about. It allows to create videos with frames formed of simple text, QR codes with cleartext or QR codes using AES encryption.Create a videoThe videos can be created using generate_video.py: enter the commands and generate the video writing "exit". The video generated is called by default output.avi (can be updated in config.py):python3 generate_video.py Run the listener and upload the video to Youtubepython3 main.pyThe listener will check the Youtube channel every 300 seconds by default (can be updated in config.py). First the video is uploaded:After finding there is a new video in the channel, it is downloaded and the commands are executed: We can see the output from the commands:ConfigurationUpdate the config.py file:channel_id (Mandatory!!!): Get your Youtube channel ID from here.api_key (Mandatory!!!): To get the API key create an application and generate the key from here.image_type (Optional. Default: "qraes"): Different types of images for the video."cleartext" creates images with the words of the commands."qr" creates QR codes with the commands."qr\aes" creates QR codes with the commands encrypted with AES.upload_seconds_delay (Optional. Default: 300): Seconds delay until checking if a new video has been uploaded.debug (Optional. Default: True): Print messages or not.aes_key (Optional. Default: "covert-tube2021"): Key for AES encryption, used in the "qr\aes" option.generated_video_path (Optional. Default: "output.avi"): Path of video generated with generate_video.py.downloaded_video_path (Optional. Default: "/tmp/test.mp4"): Path where the new video will be downloaded.temp_folder (Optional. Default: "/tmp/"): Path where images of every frame from the video are stored, with the format image_X.png.Installing dependenciesFor all the project:pip3 install Pillow opencv-python youtube_dl pytesseract pyqrcode pypng pyzbar pycryptoFor only the "cleartext" option (OCR):pip3 install Pillow opencv-python youtube_dl pytesseractFor only the QR without encryption option:pip3 install Pillow opencv-python youtube_dl pyqrcode pypng pyzbarFor only the QR with AES encryption option:pip3 install Pillow opencv-python youtube_dl pyqrcode pypng pyzbar pycryptoCreating a standalone binarypyinstaller --onefile main.pycp dist/main covert-tuberm -rf dist buildrm main.specMotivationLately I have been reading about malware using Youtube for controlling their setting remotely. For example, Casbaneiro abuses YouTube to store its C&C server domains. Each video on the channels used by the threat actor contains a description and at the end of these there is a link to a bogus Facebook or Instagram url containing the C&C server domain (Welivesecurity blog). A second example is Numando, which abuses it by encrypting the data in the title of the Youtube videos (other Welivesecurity blog).Knowing this I decided to create a PoC to test the control of remote systems uploading videos to Youtube but, instead of using the title or the description, using the content of the video. It allows to execute any command, but it could be used to change some settings remotely. So this is just a PoC, use it for educational purposes!Download Covert-Tube
Read more...
___________________________
@hacking_Attack
@Hacking_Video
A program to control systems remotely by uploading videos to Youtube using Python to create the videos and the listener, emulating some malware I was reading about. It allows to create videos with frames formed of simple text, QR codes with cleartext or QR codes using AES encryption.Create a videoThe videos can be created using generate_video.py: enter the commands and generate the video writing "exit". The video generated is called by default output.avi (can be updated in config.py):python3 generate_video.py Run the listener and upload the video to Youtubepython3 main.pyThe listener will check the Youtube channel every 300 seconds by default (can be updated in config.py). First the video is uploaded:After finding there is a new video in the channel, it is downloaded and the commands are executed: We can see the output from the commands:ConfigurationUpdate the config.py file:channel_id (Mandatory!!!): Get your Youtube channel ID from here.api_key (Mandatory!!!): To get the API key create an application and generate the key from here.image_type (Optional. Default: "qraes"): Different types of images for the video."cleartext" creates images with the words of the commands."qr" creates QR codes with the commands."qr\aes" creates QR codes with the commands encrypted with AES.upload_seconds_delay (Optional. Default: 300): Seconds delay until checking if a new video has been uploaded.debug (Optional. Default: True): Print messages or not.aes_key (Optional. Default: "covert-tube2021"): Key for AES encryption, used in the "qr\aes" option.generated_video_path (Optional. Default: "output.avi"): Path of video generated with generate_video.py.downloaded_video_path (Optional. Default: "/tmp/test.mp4"): Path where the new video will be downloaded.temp_folder (Optional. Default: "/tmp/"): Path where images of every frame from the video are stored, with the format image_X.png.Installing dependenciesFor all the project:pip3 install Pillow opencv-python youtube_dl pytesseract pyqrcode pypng pyzbar pycryptoFor only the "cleartext" option (OCR):pip3 install Pillow opencv-python youtube_dl pytesseractFor only the QR without encryption option:pip3 install Pillow opencv-python youtube_dl pyqrcode pypng pyzbarFor only the QR with AES encryption option:pip3 install Pillow opencv-python youtube_dl pyqrcode pypng pyzbar pycryptoCreating a standalone binarypyinstaller --onefile main.pycp dist/main covert-tuberm -rf dist buildrm main.specMotivationLately I have been reading about malware using Youtube for controlling their setting remotely. For example, Casbaneiro abuses YouTube to store its C&C server domains. Each video on the channels used by the threat actor contains a description and at the end of these there is a link to a bogus Facebook or Instagram url containing the C&C server domain (Welivesecurity blog). A second example is Numando, which abuses it by encrypting the data in the title of the Youtube videos (other Welivesecurity blog).Knowing this I decided to create a PoC to test the control of remote systems uploading videos to Youtube but, instead of using the title or the description, using the content of the video. It allows to execute any command, but it could be used to change some settings remotely. So this is just a PoC, use it for educational purposes!Download Covert-Tube
Read more...
___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Photo
KitPloit - PenTest Tools!
Covert-Tube - Youtube As Covert-Channel - Control Systems Remotely And Execute Commands By Uploading Videos To Youtube
https://1.bp.blogspot.com/-Tkwipt38RVY/YV4Lk3mfEuI/AAAAAAAAwJ4/iSiDlOQuGBUP_O4sdkNdbPG4_-ymCbyhwCNcBGAsYHQ/w640-h108/covert-tube_1_image1.png A program to control systems remotely by uploading videos to Youtube using Python to create the videos and the listener, emulating some malware I was reading about. It allows to create videos with frames formed of simple text, QR codes with cleartext or QR codes using AES encryption. Create a videoThe videos can be created using generate_video.py: enter the commands and generate the video writing "exit". The video generated is called by default output.avi (can be updated in config.py):
*
channel_id (Mandatory!!!): Get your Youtube channel ID from here.
*
api_key (Mandatory!!!): To get the API key create an application and generate the key from here.
*
image_type (Optional. Default: "qr_aes"): Different types of images for the video.
* "cleartext" creates images with the words of the commands.
* "qr" creates QR codes with the commands.
* "qr_aes" creates QR codes with the commands encrypted with AES.
*
upload_seconds_delay (Optional. Default: 300): Seconds delay until checking if a new video has been uploaded.
*
debug (Optional. Default: True): Print messages or not.
*
aes_key (Optional. Default: "covert-tube_2021"): Key for AES encryption, used in the "qr_aes" option.
*
generated_video_path (Optional. Default: "output.avi"): Path of video generated with generate_video.py.
*
downloaded_video_path (Optional. Default: "/tmp/test.mp4"): Path where the new video will be downloaded.
*
temp_folder (Optional. Default: "/tmp/"): Path where images of every frame from the video are stored, with the format image_X.png. Installing dependenciesFor all the project:
___________________________
@hacking_Attack
@Hacking_Video
Covert-Tube - Youtube As Covert-Channel - Control Systems Remotely And Execute Commands By Uploading Videos To Youtube
https://1.bp.blogspot.com/-Tkwipt38RVY/YV4Lk3mfEuI/AAAAAAAAwJ4/iSiDlOQuGBUP_O4sdkNdbPG4_-ymCbyhwCNcBGAsYHQ/w640-h108/covert-tube_1_image1.png A program to control systems remotely by uploading videos to Youtube using Python to create the videos and the listener, emulating some malware I was reading about. It allows to create videos with frames formed of simple text, QR codes with cleartext or QR codes using AES encryption. Create a videoThe videos can be created using generate_video.py: enter the commands and generate the video writing "exit". The video generated is called by default output.avi (can be updated in config.py):
python3 generate_video.py https://1.bp.blogspot.com/-Tkwipt38RVY/YV4Lk3mfEuI/AAAAAAAAwJ4/iSiDlOQuGBUP_O4sdkNdbPG4_-ymCbyhwCNcBGAsYHQ/w640-h108/covert-tube_1_image1.png Run the listener and upload the video to Youtubepython3 main.py The listener will check the Youtube channel every 300 seconds by default (can be updated in config.py). First the video is uploaded: https://1.bp.blogspot.com/-JUQNhQB4kr8/YV4L5rNxQGI/AAAAAAAAwKA/T5vDhdRWlZc2yvdbjh7STJ_Z6NHgKm6CgCNcBGAsYHQ/w640-h540/covert-tube_2_image2.png After finding there is a new video in the channel, it is downloaded and the commands are executed: https://1.bp.blogspot.com/-dMmLbwkGoMI/YV4L_vIrZFI/AAAAAAAAwKE/jpMwYwENYnYXm-COA4tPzQlDmBFYYw60ACNcBGAsYHQ/w640-h184/covert-tube_3_image3.png We can see the output from the commands: https://1.bp.blogspot.com/-BlFFwEUZSoA/YV4MEF8ZsAI/AAAAAAAAwKI/XWyhSpS7k4E9jMu12cI5f2oqsgTt6dr5ACNcBGAsYHQ/w640-h348/covert-tube_4_image4.png ConfigurationUpdate the config.py file:*
channel_id (Mandatory!!!): Get your Youtube channel ID from here.
*
api_key (Mandatory!!!): To get the API key create an application and generate the key from here.
*
image_type (Optional. Default: "qr_aes"): Different types of images for the video.
* "cleartext" creates images with the words of the commands.
* "qr" creates QR codes with the commands.
* "qr_aes" creates QR codes with the commands encrypted with AES.
*
upload_seconds_delay (Optional. Default: 300): Seconds delay until checking if a new video has been uploaded.
*
debug (Optional. Default: True): Print messages or not.
*
aes_key (Optional. Default: "covert-tube_2021"): Key for AES encryption, used in the "qr_aes" option.
*
generated_video_path (Optional. Default: "output.avi"): Path of video generated with generate_video.py.
*
downloaded_video_path (Optional. Default: "/tmp/test.mp4"): Path where the new video will be downloaded.
*
temp_folder (Optional. Default: "/tmp/"): Path where images of every frame from the video are stored, with the format image_X.png. Installing dependenciesFor all the project:
pip3 install Pillow opencv-python youtube_dl pytesseract pyqrcode pypng pyzbar pycrypto For only the "cleartext" option (OCR): pip3 install Pillow opencv-python youtube_dl pytesseract For only the QR without encryption option: pip3 install Pillow opencv-python youtube_dl pyqrcode pypng pyzbar For only the QR with AES encryption option: pip3 install Pillow opencv-python youtube_dl pyqrcode pypng pyzbar pycrypto Creating a standalone binarypyinstaller --onefile main.py
cp dist/main covert-tube
rm -rf dist build
rm main.spec MotivationLately I have been reading about malware using Youtube for controlling their setting remotely. For example, Casbaneiro abuses YouTube to store its C&C server domains. Each video on the channels used by the threat actor contains a description and at the end of these there is a link to a bogus Facebook or Instagram url containing t[...]___________________________
@hacking_Attack
@Hacking_Video
Kitploit
Kitploit – Maintenance in Progress
Kitploit is temporarily under maintenance. We’ll be back shortly with improvements.
Hacking Articles Tips Tricks Videos Tutorials
KitPloit - PenTest Tools! Covert-Tube - Youtube As Covert-Channel - Control Systems Remotely And Execute Commands By Uploading Videos To Youtube https://1.bp.blogspot.com/-Tkwipt38RVY/YV4Lk3mfEuI/AAAAAAAAwJ4/iSiDlOQuGBUP_O4sdkNdbPG4_-ymCbyhwCNcBGAsYHQ/w640…
he C&C server domain (Welivesecurity blog). A second example is Numando, which abuses it by encrypting the data in the title of the Youtube videos (other Welivesecurity blog).
Knowing this I decided to create a PoC to test the control of remote systems uploading videos to Youtube but, instead of using the title or the description, using the content of the video. It allows to execute any command, but it could be used to change some settings remotely. So this is just a PoC, use it for educational purposes! Download Covert-Tube
___________________________
@hacking_Attack
@Hacking_Video
Knowing this I decided to create a PoC to test the control of remote systems uploading videos to Youtube but, instead of using the title or the description, using the content of the video. It allows to execute any command, but it could be used to change some settings remotely. So this is just a PoC, use it for educational purposes! Download Covert-Tube
___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
Hello friends!
I am working on a CTF challenge and I am stuck on a problem.I have a crypted hash I need to decrypt. But I have no hint which crypting is used.It does not look like a base64 or md5.I have 205 characters all upper case A-Z and 0-9 no special characters as sig. and a 8 character key "490d55dc". Is there any website or tool where I can paste my crypted string and it tells me which crypto procedure was possibly used on the string?Thanks for any help!:)
submitted by /u/ValPlusPlusle
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Hello friends!
I am working on a CTF challenge and I am stuck on a problem.I have a crypted hash I need to decrypt. But I have no hint which crypting is used.It does not look like a base64 or md5.I have 205 characters all upper case A-Z and 0-9 no special characters as sig. and a 8 character key "490d55dc". Is there any website or tool where I can paste my crypted string and it tells me which crypto procedure was possibly used on the string?Thanks for any help!:)
submitted by /u/ValPlusPlusle
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
Hello friends!
I am working on a CTF challenge and I am stuck on a problem.I have a crypted hash I need to decrypt. But I have no hint which crypting is used.It...
hacking: security in practice
[Advice] hear me out
So, I do some selling on fb marketplace and I always get people wanting me to ship them products and want to pay me via non-traditional ways. Basically they’re trying to get me to send them my stuff without payment.
I always put in my ad that I will not ship, but that never stops them from trying.
Anyways, yesterday I had a person reach out to me and try to get me to send them my product and once I got the shipping information, the pending payment would go to my acct. they’re expecting and email with the attached receipt.
Now, I’m a nice guy. I don’t do anyone harm on purpose and have a “live and let live” attitude. But, in this particular case, I’m feeling quite vindictive. So, my question is, can someone point me in the direction of figuring out where to get some ransom ware to send them as an attachment to teach them a lesson and help me feel all warm and fuzzy on the inside?
What I would like to do is disguise it as the receipt in an attachment.
Is this even possible? Legal? Or just a cunty thing to do? I don’t mind being petty at this point. What day you folks?
submitted by /u/Battlecat74
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
[Advice] hear me out
So, I do some selling on fb marketplace and I always get people wanting me to ship them products and want to pay me via non-traditional ways. Basically they’re trying to get me to send them my stuff without payment.
I always put in my ad that I will not ship, but that never stops them from trying.
Anyways, yesterday I had a person reach out to me and try to get me to send them my product and once I got the shipping information, the pending payment would go to my acct. they’re expecting and email with the attached receipt.
Now, I’m a nice guy. I don’t do anyone harm on purpose and have a “live and let live” attitude. But, in this particular case, I’m feeling quite vindictive. So, my question is, can someone point me in the direction of figuring out where to get some ransom ware to send them as an attachment to teach them a lesson and help me feel all warm and fuzzy on the inside?
What I would like to do is disguise it as the receipt in an attachment.
Is this even possible? Legal? Or just a cunty thing to do? I don’t mind being petty at this point. What day you folks?
submitted by /u/Battlecat74
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
[Advice] hear me out
So, I do some selling on fb marketplace and I always get people wanting me to ship them products and want to pay me via non-traditional ways....