Hacking Articles Tips Tricks Videos Tutorials
471 subscribers
65.9K 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
Informer Controller: Registers informers to kube-apiserver to watch events on the configured k8s resources. It forwards the incoming k8s event to the Event Manager. Event Manager: Extracts required fields from k8s event object and creates a new BotKube event struct. It passes BotKube event struct to the Filter Engine. Filter Engine: Takes the k8s object and BotKube event struct and runs Filters on them. Each filter runs some validations on the k8s object and modifies the messages in the BotKube event struct if required. Event Notifier: Finally, notifier sends BotKube event over the configured communication channel. Bot Interface: Bot interface takes care of authenticating and managing connections with communication mediums like Slack, Mattermost, Microsoft (https://www.kitploit.com/search/label/Microsoft) Teams and reads/sends messages from/to them. Executor: Executes BotKube or kubectl command and sends back the result to the Bot interface. Visit www.botkube.io (http://www.botkube.io/) for Configuration, Usage and Examples.

Download Botkube (https://github.com/infracloudio/botkube)

___________________________
@hacking_Attack
@Hacking_Video
Botkube - An App That Helps You Monitor Your Kubernetes Cluster, Debug Critical Deployments &Amp; Gives Recommendations For Standard Practices

For complete documentation visit www.botkube.io BotKube integration with Slack, Mattermost or Microsoft Teams helps you monitor your Kubernetes cluster, debug critical deployments and gives recommendations for standard practices by running checks on the Kubernetes resources. You can also ask BotKube to execute kubectl commands on k8s cluster which helps debugging an application or cluster.Hacktoberfest 2020 BotKube is participating in Hacktoberfest 2020. We are giving some really cool swags to our contributors, learn more at - https://www.infracloud.io/blogs/infracloud-joins-hacktoberfest-2020/. Getting started Please follow this for a complete BotKube installation guide. Architecture Informer Controller: Registers informers to kube-apiserver to watch events on the configured k8s resources. It forwards the incoming k8s event to the Event Manager. Event Manager: Extracts required fields from k8s event object and creates a new BotKube event struct. It passes BotKube event struct to the Filter Engine. Filter Engine: Takes the k8s object and BotKube event struct and runs Filters on them. Each filter runs some validations on the k8s object and modifies the messages in the BotKube event struct if required. Event Notifier: Finally, notifier sends BotKube event over the configured communication channel. Bot Interface: Bot interface takes care of authenticating and managing connections with communication mediums like Slack, Mattermost, Microsoft Teams and reads/sends messages from/to them. Executor: Executes BotKube or kubectl command and sends back the result to the Bot interface. Visit www.botkube.io for Configuration, Usage and Examples. Download Botkube
Read more...

___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
Clicked a stalker link on my iPhone

A week later some guy texted me my address and name and left a voicemail of him breathing heavily into the phone. My computer signed all my accounts off as well, so I’m not sure if this guy has my passwords (and my credit card as I kept it on my gmail). Luckily, I paused it before he charged anything, but I feel like I’m being paranoid since he can’t possibly get to my computer through my iPhone

Right?

How much damage can this guy do to me?

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

___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
How to get notified when someone makes a post in the album of a private FB group?

Hey,

Can someone help me guide me how to get notified as soon as someone makes a post in a private FB group in a certain album of the group?

It's a local buy and sell facebook page. I want to be notified when someone makes a new post in the "Free giveaway" album. Some people are very quick to snitch furnitures and other stuff that people are giving away for free in this group. A free item can be posted and one minute later someone has taken it. I don't want to watch this album 24/7, I want the computer to do it for me, and notify me the second someone posts a free item in this album.

I can't just put on FB notification for every group post that is made, because I can't specify which album in the group I want to be notified in.

I would be very thankful if anyone could help me find a easy cheap or free solution to scan this FB groups album for new posts.

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

___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking Articles|Raj Chandel's Blog
Wireshark for Pentester: Decrypting RDP Traffic

Over the last few years, attackers used the Remote Desktop Protocol (RDP) for accessing unsecured servers and company networks. In ransomware malware attacks since 2017, RDP has become a major vector. Security professionals have focused their attention increasingly on this protocol by writing signatures to detect and prevent attacks of RDP vulnerabilities.

RDP supports several operating modes to encrypt network traffic, as a proprietary protocol from Microsoft. This encryption, unfortunately, makes it hard to write RDP signatures because the content of RDP is hidden.This article shows how the environment is prepared, a decryption key is obtained, and how RDP traffic can be deciphered.Table of contents You can download the trace file from hereMachine 1In cryptography, forward secrecy (FS), also known as perfect forward secrecy (PFS), is a feature of specific key agreement protocols that gives assurances that session keys will not be compromised even if long-term secrets are used in the session key exchange are compromised. For HTTPS, the long-term secret is typically the Private signing key of the server. Forward secrecy protects past sessions against future compromises of keys or passwords. By generating a unique session key for every session a user initiates, the compromise of a single session key will not affect any data other than that exchanged in the specific session protected by that particular key. ___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Hacking Articles|Raj Chandel's Blog Wireshark for Pentester: Decrypting RDP Traffic Over the last few years, attackers used the Remote Desktop Protocol (RDP) for accessing unsecured servers and company networks. In ransomware malware attacks since 2017, RDP…
n-in-the-Middle (MITM) attack. Forward secrecy typically uses an ephemeral Diffie-Hellman key exchange to prevent reading past traffic. The ephemeral Diffie-Hellman key exchange is often signed by the server using a static signing key.For this, we are using a Windows 10 host as an RDP Client. Administrative Templates > Network > SSL Configuration SettingsSSL Cipher Suite OrderEnable” option to Enable the SSL Cipher Suite Order.Applybutton to save the configuration and hit OKto close the window.Machine 2We have used another Running Windows 10 Host as an RDP server.Settings > System > Remote Desktop” and then “Enable Remote Desktop”.___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
n-in-the-Middle (MITM) attack. Forward secrecy typically uses an ephemeral Diffie-Hellman key exchange to prevent reading past traffic. The ephemeral Diffie-Hellman key exchange is often signed by the server using a static signing key.For this, we are using…
tract Private Key from its Operating system. Windows don’t allow to export of any kind of certificate so we are going to use tools like Mimikatz or Jailbreak.So, I’m going to show you how this is done from both methods. You can stick with the method which feels you like easy.Method 1: - MimikatzMimikatz is a shell for various modules. Run the following commands to export RDP keys or Certificates with private Keys. Run Mimikatz as an administrator. # Export Remote Desktop certificate(s) with private keys, password is "mimikatz"crypto::certificates -systemstore:CERT_SYSTEM_STORE_LOCAL_MACHINE -store:"Remote Desktop" /exporthttps://1.bp.blogspot.com/-Y4qUFhW9hUc/YJKgbJptYtI/AAAAAAAAvxw/Ag6ClWzpFt4Gi5xDBsy3B5voia-M4KfKQCLcBGAsYHQ/s16000/9.png Method 2: - Jailbreak A jailbreak is an iSECPartners tool that can export the RDP certificate of a server. We could extract the private key from the exported certificate. On our newly developed RDP server, we downloaded the following Jailbreak binaries from this GitHub repository to use Jailbreak.Jailbreak-master > binariesand copy the location of the binary folder select All Tasks,and then Export. Next” button.___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Photo
KitPloit - PenTest Tools!
Botkube - An App That Helps You Monitor Your Kubernetes Cluster, Debug Critical Deployments And Gives Recommendations For Standard Practices

https://1.bp.blogspot.com/-AKnMfBRfIUo/YJCQsUheh1I/AAAAAAAAWEg/pjla2FxUGNApMfGWUrvB9dv4T56nW6eigCNcBGAsYHQ/w640-h126/botkube_8_botkube-title.jpeg
For complete documentation visit www.botkube.io

BotKube integration with Slack, Mattermost or Microsoft Teams helps you monitor your Kubernetes cluster, debug critical deployments and gives recommendations for standard practices by running checks on the Kubernetes resources. You can also ask BotKube to execute kubectl commands on k8s cluster which helps debugging an application or cluster.
Hacktoberfest 2020

BotKube is participating in Hacktoberfest 2020. We are giving some really cool swags to our contributors, learn more at - https://www.infracloud.io/blogs/infracloud-joins-hacktoberfest-2020/.

Getting started

Please follow this for a complete BotKube installation guide.

Architecture
https://1.bp.blogspot.com/-Cb_u-VSHCiY/YJCQ1GhSHyI/AAAAAAAAWEk/SG0NrLB_Yngfa4yHnbGWSjhaAF_a7XJaQCNcBGAsYHQ/w640-h572/botkube_9_botkube_arch.png
* Informer Controller: Registers informers to kube-apiserver to watch events on the configured k8s resources. It forwards the incoming k8s event to the Event Manager.
* Event Manager: Extracts required fields from k8s event object and creates a new BotKube event struct. It passes BotKube event struct to the Filter Engine.
* Filter Engine: Takes the k8s object and BotKube event struct and runs Filters on them. Each filter runs some validations on the k8s object and modifies the messages in the BotKube event struct if required.
* Event Notifier: Finally, notifier sends BotKube event over the configured communication channel.
* Bot Interface: Bot interface takes care of authenticating and managing connections with communication mediums like Slack, Mattermost, Microsoft Teams and reads/sends messages from/to them.
* Executor: Executes BotKube or kubectl command and sends back the result to the Bot interface.

Visit www.botkube.io for Configuration, Usage and Examples.
Download Botkube

___________________________
@hacking_Attack
@Hacking_Video
Deep Web
Protection

What kind of Protection is necessary to be safe? Do i need special Protection when I`m just surfing around and don`t want buy anything or is it just a must?

submitted by /u/Background-Mix9859
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video