Hacking Articles Tips Tricks Videos Tutorials
470 subscribers
66K 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
│ 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
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
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 »
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
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]
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.
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 »