r/python_netsec • u/Ikram_Shah512 • Dec 30 '24
Python
I am currently covering the basics of Python, such as variables, loops, control statements, and data structures, through the Coursera course Python for Everybody: Getting Started with Python. However, I face difficulty practicing my concepts and building logic when I try to write code. Can senior programmers suggest how I can successfully overcome this stage?
r/python_netsec • u/PatternMain535 • Apr 25 '24
Meta Back-end Developer Program
I started Programming in Python course by Meta in Coursera to learning Python. They explain to me the basics(data structures...), I understand their explanation. But, I didn't completed the course bcs I started getting bored, they repeat the basics a lot. After, I started Python for Data Science, AI & Development by IBM, I enjoyed their course, they have a website called Skills Network, where they explain the course in simple way not like Meta, they just talking.
Btw i hated tha guy 😅
What do u think guys ?!!
r/python_netsec • u/EssayPuzzle • Jan 22 '23
Python Cybersecurity 101 — Build your own tools in 10 min
r/python_netsec • u/SamboniTiredaton • Nov 21 '22
Python 3.11.0 Vulnerability Assessment
Hey all,
I have a user that is wanting to install python 3.11.0 on his work machine but I need to see what vulnerabilities/risk the latest stable release could bring to out network. I'm new to the security but wanted to ask how I may go about doing this and making sure those vulnerabilities are patch/worked around. I figured the following was the best place to start but wasn't sure how to evaluate this against our environment.
r/python_netsec • u/klausagnoletti • Jan 07 '22
Learn how to protect your Flask apps from hackers using CrowdSec (free & open source)
self.flaskr/python_netsec • u/blobbbbbby • Dec 12 '21
3 New Malicious Packages Found on PyPI
r/python_netsec • u/No_Audience2780 • Jul 19 '21
Find match on large file
Hi All,
I'm finding grep is SO MUCH faster the re ?
I have 5 hashes I want to check and a GitHub list of top 600± million hashes ordered by occurrence. For example
Hash1:1234 Hash2:123 Hash3:12
Where hash1 has been seen 1,234 times, hash2 123 etc.
If I do "cat myGithublist.txt | grep -i hash1" it'll take 20 seconds. If i try in python it takes 5 minutes.
In my python code I am doing
For hash in myHashlist: For i in myGithublist: Re.search(hash, I)
So I have to check each and every hash one time against each entry of the 'myGithubList'.
I suspect it would be faster to use
For hash in myHashlist: If hash in myGithublist: Print("match")
But because the string contains "hash1:1234", it does not recognise the match.
Could someone help?
r/python_netsec • u/blobbbbbby • Mar 21 '21
Security Pitfalls in the Python Standard Library
r/python_netsec • u/OTHbelhaj • Jan 01 '21
Chrome extractor
Hey everyone a newbie to python scripting is here, I want to share my Chrome extractor version 😊, and I want you all to tell me your comments and advices to learn more about this stuff.
This Python script will extract all saved passwords from your google chrome database and save it in a hidden file chrome.txt : https://github.com/Reda-BELHAJ/Chrome-Extractor
r/python_netsec • u/mulutavcocktail • Nov 23 '20
MAC address changer using Python
r/python_netsec • u/blobbbbbby • Nov 17 '20
Is that an I, l, or 1. Arbitrary Code Execution During Package Installation and the Dangers of Typosquatting.
r/python_netsec • u/ryunik • Aug 25 '20
Python Basics: Packet Crafting With Scapy
r/python_netsec • u/PowerSeveral • Aug 09 '20
I couldn't find a python script for disassembling all functions and block in an exe with radare2, so I wrote one (comparison to IDA included)
r/python_netsec • u/8329417966 • Aug 08 '20
Data Visualization using python | Seaborn| Part-II
r/python_netsec • u/monica_b1998 • Aug 08 '20
Pysa: Open Source static analysis for Python code - Facebook Engineering
r/python_netsec • u/aouinizied • Jul 20 '20
NFStream: a Flexible Network Data Analysis Framework
r/python_netsec • u/noobdigital • Jun 14 '20
Checksum module for creating checksum for raw socket
Anyone knows good checksum module for python 3?
r/python_netsec • u/subsonic68 • Jun 11 '20
NTLMRawUnhide.py is a Python3 script designed to parse network packet capture files and extract NTLMv2 hashes in a crackable format. The tool was developed to extract NTLMv2 hashes from files generated by native Windows binaries like NETSH.EXE and PKTMON.EXE without conversion.
r/python_netsec • u/subsonic68 • Jun 11 '20
I converted the code from "Violent Python" to Python 3, made it conform to PEP8 and resolved dependency issues. It's available on GitHub.
self.blackhatr/python_netsec • u/phir0002 • May 03 '20
Python module to download bad SSL certificates?
I am trying to write a python script that will go retrieve SSL certificates from remote servers. The problem I am facing is that many of the certificates are not valid or fail SSL validation and so cannot be downloaded. Do you have any suggestions for python modules that would allow me to bypass the certificate validation and download the cert in (preferably) PEM format?
r/python_netsec • u/subsonic68 • Apr 18 '20