Mass scan for .git repository and .env file exposure

Scanner to find .env file and .git repository exposure on multiple hosts Because of the response code from some hosts, it may have some false positives. requests and argparse pip3 install -r requirements.txt Be careful with the output filename as it can be deleted if duplicated python3 git_scan.py -t hosts.txt -o results.txt -f git or env GitHub https://github.com/scarmandef/git-mass-scan    

Read more

Convert the .py file into exe for faster transformation and can result to build an app in a single click

GitHub – Aaris-Kazi/PY2EXE_APP: The Application can convert the .py file into exe for faster transformation and can result to build an app in a single click The Application can convert the .py file into exe for faster transformation and can result to build an app in a single click – GitHub – Aaris-Kazi/PY2EXE_APP: The Application can convert the .py fi…    

Read more

Python REST client library SDK for Ably realtime messaging service

ably-python This is a Python client library for Ably. The library currently targets the Ably 1.1 client library specification. Running example import asyncio from ably import AblyRest async def main(): async with AblyRest(‘api:key’) as ably: channel = ably.channels.get(“channel_name”) if __name__ == “__main__”: asyncio.run(main()) Installation The client library is available as a PyPI package. Requirements From PyPI pip install ably Or, if you need encryption features: pip install ‘ably[crypto]’ Locally git clone https://github.com/ably/ably-python.git cd ably-python python setup.py install Breaking API Changes […]

Read more

Pass by Reference in Python: Best Practices

After gaining some familiarity with Python, you may notice cases in which your functions don’t modify arguments in place as you might expect, especially if you’re familiar with other programming languages. Some languages handle function arguments as references to existing variables, which is known as pass by reference. Other languages handle them as independent values, an approach known as pass by value. If you’re an intermediate Python programmer who wishes to understand Python’s peculiar way of handling function arguments, then […]

Read more

Monetize your apps with KivAds using Google AdMob api

Monetize your apps with KivAds using Google AdMob api. KivAds uses the latest version of Google AdMob sdk(version 20.0.0). KivAds exposes most of the functions and operations available in the Admob sdk as easy to use python functions, allowing you to quickly integrate ads into your app. So far in testing KivAds works 100% reliabily on devices from android 6 all the way upto android 11. Note: Currently the repo is work in progress and only few things have been […]

Read more
1 456 457 458 459 460 928