跳到主要內容

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

有時候推不上去… Git push ... fail

偶爾在執行 Push 指令的時候會出現這個錯誤訊息: $ git push To https://github.com/eddiekao/dummy-git.git ! [rejected] master -> master (fetch first) error: failed to push some refs to 'https://github.com/eddiekao/dummy-git.git' hint: Updates were rejected because the remote contains work that you do hint: not have locally. This is usually caused by another repository pushing hint: to the same ref. You may want to first integrate the remote changes hint: (e.g., 'git pull ...') before pushing again. hint: See the 'Note about fast-forwards' in 'git push --help' for details. 這段訊息的意思是線上版本的內容比你電腦裡這份還要新,所以 Git 不讓你推上去。 怎麼造成的? 通常這個狀況會發生在多人一起開發的時候,想像一下這個情境: Sherly 跟 Eddie 兩個人在差不多的時間都從 Git Server 上拉了一份資料下來準備進行開發。 Sherly 手腳比較快,先完成了,於是先把做好的成果推一份上去。 Eddie 不久後也完成了,但當他要推上去的時候發現推不上去了… 怎麼解決? 解決方法算是有兩招 第一招:先拉再推 因為你電腦裡的內容是比較舊的,所以你應該先拉一份線上版本的回來更新,然後再推一次: $ git pull --rebase remote: Counting objects: 3, done. remote: Compressing objects: 100% (2/2), done. rem

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