Hacking Articles Tips Tricks Videos Tutorials
467 subscribers
65.7K 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
Kali Linux Tutorials
Endpoint Detection and Response: 6 Best Practices You Must Know About

What Is Endpoint Detection and Response? An endpoint detection and response (EDR) solution is a collection of tools and processes used to detect and analyze potential attacks and their traces on endpoint devices. Endpoints include desktops, laptops, mobile devices, and other devices connected to a corporate network.  EDR solutions are designed to provide continuous monitoring […]

The post Endpoint Detection and Response: 6 Best Practices You Must Know About appeared first on Kali Linux Tutorials.

___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
Nord?

Hey all, my NordVPN is running out soon but recently I have been hearing negative reviews. Has Nord turned sour? I have seen ProtonVPN and was thinking about making the hop, any other suggestions?

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

___________________________
@hacking_Attack
@Hacking_Video
PancakeSwap Content Injection Bug Fix Postmortem

Summary:Continue reading on Immunefi »
Read more...
Documentation

Logging functions
func F(s string, arg ...interface{}) string
Alias for fmt.Sprintf

func PrintGood(msg string)
Print good status message

func PrintInfo(msg string)
Print info status message

func PrintError(msg string)
Print error status message

func PrintWarning(msg string)
Print warning status message


Auxiliary functions
func FileToSlice(file string) []string
Read from file and return slice with lines delimited with newline.

func Contains(s interface{}, elem interface{}) bool
Check if interface type contains another interface type.

func StrToInt(string_integer string) int
Convert string to int.

func IntToStr(i int) string
Converts int to string.

func IntervalToSeconds(interval string) int
Converts given time interval to seconds.

func RandomInt(min int, max int) int
Returns a random int from range.

func RandomSelectStr(list []string) string
Returns a random selection from slice of strings.

func RandomSelectInt(list []int) int
Returns a random selection from slice of ints.

func RandomSelectStrNested(list [][]string) []string
Returns a random selection from nested string slice.

func RemoveNewlines(s string) string
Removes "\n" and "\r" characters from string.

func FullRemove(str string, to_remove string) string
Removes all occurences of substring.

func RemoveDuplicatesStr(slice []string) []string
Removes duplicates from string slice.

func RemoveDuplicatesInt(slice []int) []int
Removes duplicates from int slice.

func ContainsAny(str string, elements []string) bool
Returns true if slice contains a string.

func RandomString(n int) string
Generates random string of length [n]

func ExitOnError(e error)
Handle errors

func Md5Hash(str string) string
Returns MD5 checksum of a string

func MakeZip(zip_file string, files []string) error
Creates a zip archive from a list of files

func ReadFile(filename string) (string, error)
Read contents of a file.

func WriteFile(filename string) error
Write contents to a file.

func B64d(str string) string
Returns a base64 decoded string

func B64e(str string) string
Returns a base64 encoded string

func FileExists(file string) bool
Check if file exists.

func ParseCidr(cidr string) ([]string, error)
Returns a slice containing all possible IP addresses in the given range.


Reconnaissance functions
wireless interface and it's MAC address. func Ifaces() []string Returns slice containing names of all local interfaces. func Disks() ([]string, error) Lists local storage devices func Users() []string, err Returns list of known users. func Info() map[string]string Returns basic system information. Possible fields: username, hostname, go_os, os, platform, cpu_num, kernel, core, local_ip, ap_ip, global_ip, mac. If the field cannot be resolved, it defaults to "N/A" value. func DnsLookup(hostname string) ([]string, error) Performs DNS lookup func RdnsLookup(ip string) ([]string, error) Performs reverse DNS lookup func HostsPassive(interval string) []string, err Passively discovers active hosts on a network using ARP monitoring. Discovery (https://www.kitploit.com/search/label/Discovery) time can be changed using argument. func FilePermissions(filename string) (bool,bool) Checks if file has read and write permissions. func Portscan(target string, timeout, threads int) []int Returns list of open ports (https://www.kitploit.com/search/label/Open%20Ports) on target. func PortscanSingle(target string, port int) bool Returns true if selected port is open. func BannerGrab(target string, port int) (string, error) Grabs a service banner string from a given port. func Networks() ([]string, error) Returns list of nearby wireless networks. ">

___________________________
@hacking_Attack
@Hacking_Video