│ Kaspersky │ Yes │ EICAR-Test-File │
├──────────────┼────────────┼───────────────────────────────┤
│ BitDefender │ Yes │ EICAR-Test-File (not a virus) │
├──────────────┼────────────┼────────────────────────────── ─┤
│ Paloalto │ No │ │
├──────────────┼────────────┼───────────────────────────────┤
│ TrendMicro │ Yes │ Eicar_test_file │
├──────────────┼────────────┼───────────────────────────────┤
│ FireEye │ Yes │ EICAR-Test-File (not a virus) │
├──────────────┼────────────┼───────────────────────────────┤
│ Sophos │ Yes │ EICAR-AV-Test │
├──────────────┼────────────┼───────────────────────────────┤
│ Microsoft │ Yes │ Virus:DOS/EICAR_Test_File │
├──────────────┼────────────┼───────────────────────────────┤
│ McAfee │ Yes │ EICAR test file │
├──────────────┼────────────┼───────────────────────────────┤
│ Fortinet │ Yes │ EICAR_TEST_FILE │
├──────────────┼────────────┼───────────────────────────────┤
│ AVG │ Yes │ EICAR Test-NOT virus!!! │
╘══════════════╧════════════╧═══════════════════════════════╛
[*] VirusTotal reputation:
3392
Using the API
Creating a hash >> from ioccheck import Hash >>> from ioccheck.services import VirusTotal >>> eicar = Hash("275a021bbfb6489e54d471899f7db9d1663fc695ec2fe2a2c4538aabf651fd0f") >>> # What kind of hash is this? >>> print(eicar.hash_type) SHA256 '>>>> from ioccheck import Hash
>>> from ioccheck.services import VirusTotal
>>> eicar = Hash("275a021bbfb6489e54d471899f7db9d1663fc695ec2fe2a2c4538aabf651fd0f")
>>> # What kind of hash is this?
>>> print(eicar.hash_type)
SHA256 Looking up a hash >> # With no arguments, check() tries all supported services. API keys grabbed from ~/.ioccheck by default. >>> eicar.check() >>> # Alternatively: >>> eicar.check(services=VirusTotal, config_path=/foo/bar/.ioccheck) ">>>> # With no arguments, check() tries all supported services. API keys grabbed from ~/.ioccheck by default.
>>> eicar.check()
>>> # Alternatively:
>>> eicar.check(services=VirusTotal, config_path=/foo/bar/.ioccheck) Researching a hash >> # Check the VirusTotal report to see if Sophos detects our hash >>> eicar.reports.virustotal.get_detections(engines=["Sophos"]) {'Sophos': {'category': 'malicious', 'engine_name': 'Sophos', 'engine_version': '1.0.2.0', 'result': 'EICAR-AV-Test', 'method': 'blacklist', 'engine_update': '20210314'}} >>> # What is this hash known as? >>> print(eicar.reports.virustotal.name) 'eicar.com-2224' >>> # How many AV engines are detecting this hash? >>> eicar.reports.virustotal.detection_count 60 ">>>> # Check the VirusTotal report to see if Sophos detects our hash
>>> eicar.reports.virustotal.get_detections(engines=["Sophos"])
{'Sophos': {'category': 'malicious', 'engine_name': 'Sophos', 'engine_version': '1.0.2.0', 'result': 'EICAR-AV-Test', 'method': 'blacklist', 'engine_update': '20210314'}}
>>> # What is this hash known as?
>>> print(eicar.reports.virustotal.name)
'eicar.com-2224'
>>> # How many AV engines are detecting this hash?
>>> eicar.reports.virustotal.detection_count
60 >> # Just show me the VirusTotal API response! >>> eicar.reports.virustotal.api_response ">>>> # Just show me the VirusTotal API response!
>>> eicar.reports.virustotal.api_response
Download Ioccheck (https://github.com/ranguli/ioccheck)
___________________________
@hacking_Attack
@Hacking_Video
├──────────────┼────────────┼───────────────────────────────┤
│ BitDefender │ Yes │ EICAR-Test-File (not a virus) │
├──────────────┼────────────┼────────────────────────────── ─┤
│ Paloalto │ No │ │
├──────────────┼────────────┼───────────────────────────────┤
│ TrendMicro │ Yes │ Eicar_test_file │
├──────────────┼────────────┼───────────────────────────────┤
│ FireEye │ Yes │ EICAR-Test-File (not a virus) │
├──────────────┼────────────┼───────────────────────────────┤
│ Sophos │ Yes │ EICAR-AV-Test │
├──────────────┼────────────┼───────────────────────────────┤
│ Microsoft │ Yes │ Virus:DOS/EICAR_Test_File │
├──────────────┼────────────┼───────────────────────────────┤
│ McAfee │ Yes │ EICAR test file │
├──────────────┼────────────┼───────────────────────────────┤
│ Fortinet │ Yes │ EICAR_TEST_FILE │
├──────────────┼────────────┼───────────────────────────────┤
│ AVG │ Yes │ EICAR Test-NOT virus!!! │
╘══════════════╧════════════╧═══════════════════════════════╛
[*] VirusTotal reputation:
3392
Using the API
Creating a hash >> from ioccheck import Hash >>> from ioccheck.services import VirusTotal >>> eicar = Hash("275a021bbfb6489e54d471899f7db9d1663fc695ec2fe2a2c4538aabf651fd0f") >>> # What kind of hash is this? >>> print(eicar.hash_type) SHA256 '>>>> from ioccheck import Hash
>>> from ioccheck.services import VirusTotal
>>> eicar = Hash("275a021bbfb6489e54d471899f7db9d1663fc695ec2fe2a2c4538aabf651fd0f")
>>> # What kind of hash is this?
>>> print(eicar.hash_type)
SHA256 Looking up a hash >> # With no arguments, check() tries all supported services. API keys grabbed from ~/.ioccheck by default. >>> eicar.check() >>> # Alternatively: >>> eicar.check(services=VirusTotal, config_path=/foo/bar/.ioccheck) ">>>> # With no arguments, check() tries all supported services. API keys grabbed from ~/.ioccheck by default.
>>> eicar.check()
>>> # Alternatively:
>>> eicar.check(services=VirusTotal, config_path=/foo/bar/.ioccheck) Researching a hash >> # Check the VirusTotal report to see if Sophos detects our hash >>> eicar.reports.virustotal.get_detections(engines=["Sophos"]) {'Sophos': {'category': 'malicious', 'engine_name': 'Sophos', 'engine_version': '1.0.2.0', 'result': 'EICAR-AV-Test', 'method': 'blacklist', 'engine_update': '20210314'}} >>> # What is this hash known as? >>> print(eicar.reports.virustotal.name) 'eicar.com-2224' >>> # How many AV engines are detecting this hash? >>> eicar.reports.virustotal.detection_count 60 ">>>> # Check the VirusTotal report to see if Sophos detects our hash
>>> eicar.reports.virustotal.get_detections(engines=["Sophos"])
{'Sophos': {'category': 'malicious', 'engine_name': 'Sophos', 'engine_version': '1.0.2.0', 'result': 'EICAR-AV-Test', 'method': 'blacklist', 'engine_update': '20210314'}}
>>> # What is this hash known as?
>>> print(eicar.reports.virustotal.name)
'eicar.com-2224'
>>> # How many AV engines are detecting this hash?
>>> eicar.reports.virustotal.detection_count
60 >> # Just show me the VirusTotal API response! >>> eicar.reports.virustotal.api_response ">>>> # Just show me the VirusTotal API response!
>>> eicar.reports.virustotal.api_response
Download Ioccheck (https://github.com/ranguli/ioccheck)
___________________________
@hacking_Attack
@Hacking_Video
GitHub
GitHub - ranguli/ioccheck: A tool for simplifying the process of researching IOCs.
A tool for simplifying the process of researching IOCs. - ranguli/ioccheck
hacking: security in practice
How to setup SMTP server using Python?
Basically, I want to make a script which will automatically setup an email server, and will be able to send messages to remote devices.
submitted by /u/r_bfox89
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
How to setup SMTP server using Python?
Basically, I want to make a script which will automatically setup an email server, and will be able to send messages to remote devices.
submitted by /u/r_bfox89
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
How to setup SMTP server using Python?
Basically, I want to make a script which will automatically setup an email server, and will be able to send messages to remote devices.
Help finding a wireless signal generator as a testing solution.
https://www.reddit.com/r/Pentesting/comments/o45ws2/help_finding_a_wireless_signal_generator_as_a/
submitted by /u/cunnalinguist (https://www.reddit.com/user/cunnalinguist)
[link] (https://www.reddit.com/r/networking/comments/o45vwy/help_finding_a_wireless_signal_generator_as_a/) [comments] (https://www.reddit.com/r/Pentesting/comments/o45ws2/help_finding_a_wireless_signal_generator_as_a/)
___________________________
@hacking_Attack
@Hacking_Video
https://www.reddit.com/r/Pentesting/comments/o45ws2/help_finding_a_wireless_signal_generator_as_a/
submitted by /u/cunnalinguist (https://www.reddit.com/user/cunnalinguist)
[link] (https://www.reddit.com/r/networking/comments/o45vwy/help_finding_a_wireless_signal_generator_as_a/) [comments] (https://www.reddit.com/r/Pentesting/comments/o45ws2/help_finding_a_wireless_signal_generator_as_a/)
___________________________
@hacking_Attack
@Hacking_Video
reddit
Help finding a wireless signal generator as a testing solution.
Posted in r/Pentesting by u/cunnalinguist • 2 points and 0 comments
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Weekly Shot 6 — What’s the fuss about VPNs?
https://cdn-images-1.medium.com/max/600/1*Lj1k4SGdWRabIYlcpD5D4Q.png
Hola readers! This week’s weekly shot is an in-depth look at VPNs or Virtual Private Networks. The talk around VPNs has increased a lot…
Continue reading on Medium »
Weekly Shot 6 — What’s the fuss about VPNs?
https://cdn-images-1.medium.com/max/600/1*Lj1k4SGdWRabIYlcpD5D4Q.png
Hola readers! This week’s weekly shot is an in-depth look at VPNs or Virtual Private Networks. The talk around VPNs has increased a lot…
Continue reading on Medium »
hacking: security in practice
How hard is it to make money legally?
How hard is it to make money independently is bug bounty the only option?
submitted by /u/pleasehelpmesir1
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
How hard is it to make money legally?
How hard is it to make money independently is bug bounty the only option?
submitted by /u/pleasehelpmesir1
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Reddit
r/hacking on Reddit: How hard is it to make money legally?
Posted by u/[Deleted Account] - 426 votes and 92 comments
hacking: security in practice
Full stack Academy CyberSecurity Analytics Bootcamp- worth it?
Hey guys so I’ve been working for my high school since I was an incoming freshmen on their tech team. Re-imaging computers, updating their firewall, doing repairs (all Lenovo and Dell laptops) and using azure recently so I have a great amount of hardware experience and a decent amount of network experience.
This stuff really interests me. I just graduated with an English bachelors at 20 because I thought I was going to go to law school….. I don’t want to anymore. I’m 20 and want to enter the cyber security world. I know all the doctor messer stuff and could easily get my Network+ and A+ certifications.
Bottom line: I’ve recently been turned on to a bootcamp -Fullstack academy cybersecurity. It’s expensive but I am in no debt and graduated college 2 years early. Is this worth it? I wanted to hear what people thought of bootcamps that have cyber security tracts. This is a 6 month course that’s connected to companies that hire Soc analysts. I don’t have anyone in my family who knows about computers and generally just want to know if this is something to do. It seems much more practical than another degree.
submitted by /u/TurdMonst3r69
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Full stack Academy CyberSecurity Analytics Bootcamp- worth it?
Hey guys so I’ve been working for my high school since I was an incoming freshmen on their tech team. Re-imaging computers, updating their firewall, doing repairs (all Lenovo and Dell laptops) and using azure recently so I have a great amount of hardware experience and a decent amount of network experience.
This stuff really interests me. I just graduated with an English bachelors at 20 because I thought I was going to go to law school….. I don’t want to anymore. I’m 20 and want to enter the cyber security world. I know all the doctor messer stuff and could easily get my Network+ and A+ certifications.
Bottom line: I’ve recently been turned on to a bootcamp -Fullstack academy cybersecurity. It’s expensive but I am in no debt and graduated college 2 years early. Is this worth it? I wanted to hear what people thought of bootcamps that have cyber security tracts. This is a 6 month course that’s connected to companies that hire Soc analysts. I don’t have anyone in my family who knows about computers and generally just want to know if this is something to do. It seems much more practical than another degree.
submitted by /u/TurdMonst3r69
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
r/hacking - Full stack Academy CyberSecurity Analytics Bootcamp- worth it?
0 votes and 0 comments so far on Reddit
hacking: security in practice
This has been asked a million times for sure, but where do I start?
Everyone is saying the channel "liveoverflow" but his videos expect you to have the least bit of knowledge about cyber security, i literally know nothing. I tried searching for a video in his channel that's for absolute beginners like me but i can't find any. Some help will be appreciated
submitted by /u/ad_396
[link] [comments]
This has been asked a million times for sure, but where do I start?
Everyone is saying the channel "liveoverflow" but his videos expect you to have the least bit of knowledge about cyber security, i literally know nothing. I tried searching for a video in his channel that's for absolute beginners like me but i can't find any. Some help will be appreciated
submitted by /u/ad_396
[link] [comments]
reddit
This has been asked a million times for sure, but where do I start?
Everyone is saying the channel "liveoverflow" but his videos expect you to have the least bit of knowledge about cyber security, i literally know...
hacking: security in practice
Where did you guys start hacking and what made you guys hooked on it
Curiosity that's it
submitted by /u/nitheeswar1
[link] [comments]
Where did you guys start hacking and what made you guys hooked on it
Curiosity that's it
submitted by /u/nitheeswar1
[link] [comments]
reddit
Where did you guys start hacking and what made you guys hooked on it
Curiosity that's it
Knock! Knock! The postman is here! (abusing Mailslots and PortKnocking for connectionless shells)
https://www.reddit.com/r/redteamsec/comments/o49427/knock_knock_the_postman_is_here_abusing_mailslots/
submitted by /u/NoUseForANick (https://www.reddit.com/user/NoUseForANick)
[link] (https://adepts.of0x.cc/connectionless-shells/) [comments] (https://www.reddit.com/r/redteamsec/comments/o49427/knock_knock_the_postman_is_here_abusing_mailslots/)
___________________________
@hacking_Attack
@Hacking_Video
https://www.reddit.com/r/redteamsec/comments/o49427/knock_knock_the_postman_is_here_abusing_mailslots/
submitted by /u/NoUseForANick (https://www.reddit.com/user/NoUseForANick)
[link] (https://adepts.of0x.cc/connectionless-shells/) [comments] (https://www.reddit.com/r/redteamsec/comments/o49427/knock_knock_the_postman_is_here_abusing_mailslots/)
___________________________
@hacking_Attack
@Hacking_Video
reddit
Knock! Knock! The postman is here! (abusing Mailslots and...
Posted in r/redteamsec by u/NoUseForANick • 1 point and 0 comments
Advice on pentesting Angular web application
https://www.reddit.com/r/Pentesting/comments/o4c1wq/advice_on_pentesting_angular_web_application/
Does anyone have any good guides to pentest angular application? Or any good resources for testing angular wep apps Thanks in advance submitted by /u/GambitEk1 (https://www.reddit.com/user/GambitEk1)
[link] (https://www.reddit.com/r/Pentesting/comments/o4c1wq/advice_on_pentesting_angular_web_application/) [comments] (https://www.reddit.com/r/Pentesting/comments/o4c1wq/advice_on_pentesting_angular_web_application/)
___________________________
@hacking_Attack
@Hacking_Video
https://www.reddit.com/r/Pentesting/comments/o4c1wq/advice_on_pentesting_angular_web_application/
Does anyone have any good guides to pentest angular application? Or any good resources for testing angular wep apps Thanks in advance submitted by /u/GambitEk1 (https://www.reddit.com/user/GambitEk1)
[link] (https://www.reddit.com/r/Pentesting/comments/o4c1wq/advice_on_pentesting_angular_web_application/) [comments] (https://www.reddit.com/r/Pentesting/comments/o4c1wq/advice_on_pentesting_angular_web_application/)
___________________________
@hacking_Attack
@Hacking_Video
reddit
Advice on pentesting Angular web application
Does anyone have any good guides to pentest angular application? Or any good resources for testing angular wep apps Thanks in advance
Hacking Articles Tips Tricks Videos Tutorials
Photo
Kali Linux Tutorials
ColdFire : Golang Malware Development Library
ColdFire provides various methods useful for malware development in Golang. Most functions are compatible with both Linux and Windows operating systems. Installation go get github.com/redcode-labs/ColdFire Types Of Functions Included Logging Auxiliary Reconnaissance Evasion Administration Sandbox detection Disruptive Documentation Logging Functions func F(s string, arg …interface{}) stringAlias for fmt.Sprintffunc PrintGood(msg string)Print good status messagefunc PrintInfo(msg string)Print […]
The post ColdFire : Golang Malware Development Library appeared first on Kali Linux Tutorials.
ColdFire : Golang Malware Development Library
ColdFire provides various methods useful for malware development in Golang. Most functions are compatible with both Linux and Windows operating systems. Installation go get github.com/redcode-labs/ColdFire Types Of Functions Included Logging Auxiliary Reconnaissance Evasion Administration Sandbox detection Disruptive Documentation Logging Functions func F(s string, arg …interface{}) stringAlias for fmt.Sprintffunc PrintGood(msg string)Print good status messagefunc PrintInfo(msg string)Print […]
The post ColdFire : Golang Malware Development Library appeared first on Kali Linux Tutorials.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Hunting Social Media Accounts Using Sherlock
https://cdn-images-1.medium.com/max/1920/1*SpD1qRIW8bu3qRo9sxUIuw.jpeg
A Python Tool For Hunt down social media accounts by username across social media
Continue reading on The Pythoneers »
Hunting Social Media Accounts Using Sherlock
https://cdn-images-1.medium.com/max/1920/1*SpD1qRIW8bu3qRo9sxUIuw.jpeg
A Python Tool For Hunt down social media accounts by username across social media
Continue reading on The Pythoneers »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Dogcat Writeup — Tryhackme
https://cdn-images-1.medium.com/max/1011/1*w6BDYOVvqaVrReS5vCnWxA.png
Salutare ! Dupa ceva timp, am decis sa vin cu un nou writeup, iar de aceasta data, este un writeup la o masina de pe tryhackme.
Continue reading on Medium »
Dogcat Writeup — Tryhackme
https://cdn-images-1.medium.com/max/1011/1*w6BDYOVvqaVrReS5vCnWxA.png
Salutare ! Dupa ceva timp, am decis sa vin cu un nou writeup, iar de aceasta data, este un writeup la o masina de pe tryhackme.
Continue reading on Medium »