跳到主要內容

Python tool for Google Dork


Katana-ds(ds代表dork_scanner)是一個簡單的python工具
可自動執行Google Hacking / Dorking並支持 Tor
與GHDB結合使用時功能更強

https://github.com/adnane-X-tebbaa/Katana.git



留言

這個網誌中的熱門文章

Unofficial Windows Binaries for Python Extension Packages

You can find in url below : https://www.lfd.uci.edu/~gohlke/pythonlibs/ Unofficial Windows Binaries for Python Extension Packages by Christoph Gohlke, Laboratory for Fluorescence Dynamics, University of California, Irvine. Updated on 16 April 2020 at 22:50 UTC. This page provides 32- and 64-bit Windows binaries of many scientific open-source extension packages for the official CPython distribution of the Python programming language. A few binaries are available for the PyPy distribution. The files are unofficial (meaning: informal, unrecognized, personal, unsupported, no warranty, no liability, provided "as is") and made available for testing and evaluation purposes. Most binaries are built from source code found on PyPI or in the projects public revision control systems. Source code changes, if any, have been submitted to the project maintainers or are included in the packages. Refer to the documentation of the individual packages for license restrictions and dependen...

How to Extract (Unzip) Tar .gz File

How to Extract (Unzip) Tar .gz File If you are roaming the open-source world, chances are you encounter .tar.gz files on a regular basis. Open-source packages are generally available to download in .tar.gz and .zip formats. The tar command is used to create tar archives by converting a group of files into an archive. It supports a vast range of compression programs such as gzip, bzip2, lzip, lzma, lzop, xz and compress. Tar was originally designed for creating archives to store files on magnetic tape which is why it has its name “ T ape AR chive”. Gzip is the most popular algorithm for compressing tar files. By convention, the name of a tar archive compressed with gzip should end with either .tar.gz or .tgz . In short, a file that ends in .tar.gz is a .tar archive compressed with gzip. The tar command can also be used to extract tar archives, display a list of the files included in the archive, add additional files to an existing archive, as well as various other kinds of ...