Simple script to create VBscript of exe and inject to xlsm

Executable file injection to Excel documents (.xlsm) 📄 Description Simple python script to create xlsm dropper of given executable file. You can change code or expand it for another Office extensions đŸ“ș How to use python3 exe-to-xlsm.py -i input_file.exe –xlsm output_document.xlsm ❗ Notice This script can be used to deliver potential dangerous software, so use it only for educational purposes or for self-practicing Do not distribute Do not use for malicious purposes GitHub View Github    

Read more

Linux GUI app to codon optimize many single-fasta files with coding sequences , using many taxonomy ids

Linux GUI app to codon optimize many single-fasta files with coding sequences, using many taxonomy ids Depedences linux OS (tested on ubuntu 20.04 LTS) python 3.8.2 or later anaconda or miniconda Gooey conda install -c conda-forge gooey(if you get errors during installation or runtime try installing gtk sudo apt-get install libgtk-3-dev) biopython pip install biopython pandas pip install pandas dnachisel pip install dnachisel linux desktop app installation open a linux text editor and edit in the python file the shebang […]

Read more

An curated collection of awesome resources about networking in cybersecurity

Welcome to the world of Networking. An ongoing curated collection of awesome software, libraries, frameworks, talks & videos, best practices, learning tutorials and important practical resources about networking in cybersecurity. Thanks to all contributors, you’re awesome and wouldn’t be possible without you! Our goal is to build a categorized community-driven collection of very well-known resources. Table of Contents Network Foundations Computer networking refers to connected computing devices (such as laptops, desktops, servers, smartphones, and tablets) and an ever-expanding array of […]

Read more

OSINT Cybersecurity Tools For Python

Welcome to the World of OSINT: An ongoing collection of awesome tools and frameworks, best security software practices, libraries, learning tutorials, frameworks, academic and practical resources about Open-source intelligence (OSINT) in cybersecurity. Thanks to all contributors, you’re awesome and wouldn’t be possible without you! Our goal is to build a categorized community-driven collection of very well-known resources. Table of Contents ^ back to top ^ ↑ Introduction Open-source intelligence (OSNIT) is the insight gained from processing and analyzing public data […]

Read more

Easy JSON wrapper modfied to wrok with suggestions

Easy JSON wrapper modfied to wrok with suggestions. This was made for small discord bots, for big bots you should not use this. Clone this file into your project folder. Add from suggester import SuggestionBoard to the top of your project. board.add_suggestion(content: str, author: int) Creates a suggestion in the draft category. Will return the suggestions ID (sID). “1234567890”: {“content”: content, “author”: author} board.approve_suggestion(sID: str) Moves a suggestion from the draft category to the approved category. Will raise: NoSuchSuggestion: if […]

Read more

Simple Python Script to Parse Apache Log, Get all Unique IPs and Urls visited by that IP

Simple Python Script to Parse Apache Log, Get all Unique IPs and Urls visited by that IP. It will create 3 different files. allIP.txt – Contains all the IPs in raw uniqueIP.txt – Contains all unique IP’s ipAndUrl.txt – Contains list of Urls visited by that particular IP. git clone https://github.com/KathanP19/Parse_Apache_Log cd Parse_Apache_Log Usage: parse_log.py [options] Options: -h, –help show this help message and exit -f FILE, –file=FILE Path of you apache log file. -v, –verbose Verbose Mode. python3 parse_log.py […]

Read more

Equibles Stocks API for Python

Requirements. Python 2.7 and 3.4+ Installation & Usage pip install If the python package is hosted on Github, you can install directly from Github pip install git+https://github.com/equibles/stocks-python.git (you may need to run pip with root permission: sudo pip install git+https://github.com/equibles/stocks-python.git) Then import the package: Setuptools Install via Setuptools. python setup.py install –user (or sudo python setup.py install to install the package for all users) Then import the package: Getting Started Please follow the installation procedure and then run the following:

Read more

NuPIC Studio – An all­-in-­one tool that allows users create a HTM neural network from scratch

NuPIC Studio NuPIC Studio is an all­-in-­one tool that allows users create a HTM neural network from scratch, train it, collect statistics, and share it among the members of the community. It is not just a visualization tool but an HTM builder, debugger and laboratory for experiments. It is ideal for newbies with little intimacy with NuPIC code as well as experts that wish a better productivity. Among its features and advantages: Users can open, save, or change their “HTM […]

Read more

A web-based visualization and debugging platform for NuPIC

A web-based visualization and debugging platform for NuPIC. Usage Set up cerebro2.server to export your model state. Then, run: cd static python -m SimpleHTTPServer 8000 Finally, visit the following URL in your browser: Screenshots To enable taking screenshots with the p keyboard shortcut, open js/classes/abstract_visualization.js and uncomment the line under the note about screenshots. Quicker Setup See ‘run_server.py’ for a quicker setup. GitHub View Github    

Read more

Code examples for running V4L2 USB Cameras on NVIDIA Jetson Developer Kits

Code examples for running V4L2 USB Cameras on NVIDIA Jetson Developer Kits Here are a few examples on how to interface a USB Camera with a Jetson Developer Kit through V4L2 and GStreamer. “Plug and Play” USB cameras on Linux, such as webcams, use the kernel module uvcvideo to interface with the Video 4 Linux subsystem (V4L2). Several specialty cameras such as the Stereolabs ZED camera and Intel RealSense cameras also use uvcvideo. In the Jetson Camera Architecture, you can […]

Read more
1 247 248 249 250 251 915