NeoLAB
34 subscribers
150 photos
29 videos
94 files
335 links
Lab of @neo_is_kal

🐧 | @ArchLinuxIndia
🐚 | @PrivacyToolsIOChat
🍬 | @FossMemes

This is a Journal + Shrine of links
Website: https://neovoid.is-cool.dev
Download Telegram
#reads Cory Althoff - The Self Taught Programmer/Computer\ Scientist
#books
Please open Telegram to view this post
VIEW IN TELEGRAM
This media is not supported in your browser
VIEW IN TELEGRAM
THM: Set to have all their apps secured, the elves turned towards the one Santa uses to manage the present deliveries for Christmas. Elf McSkidy asked Elf Exploit and Elf Admin to assist you in clearing the application from SQL injections. When presented with the app's code, both elves looked a bit shocked, as none of them knew how to make any sense of it, let alone fix it. "We used to have an Elf McCode, but he founded a startup and helps us no more", said Admin.

After a bit of talk, it was decided. The elves returned carrying a pointy hat and appointed you as the new Elf McCode. Congratulations on your promotion!

Me: Damn! I got promotion 😳.
#notes Change username from old to new

make sure no program is running under old username
run these under tty in root for best

//rename username
#usermod –l newname oldname

//for changing directory name too
#usermod –d /home/newname –m newname

//changing finger information
#chfn –f newname newname

//now reboot or relogin and check
$whoami
$pwd

#hacktuts
tcpdump-zine.pdf
1.6 MB
tcpdump zine #books
🔥Complete Bug Bounty Cheat Sheet

XSS
https://github.com/EdOverflow/bugbounty-cheatsheet/blob/master/cheatsheets/xss.md
https://github.com/ismailtasdelen/xss-payload-list

SQLi
https://github.com/EdOverflow/bugbounty-cheatsheet/blob/master/cheatsheets/sqli.md

SSRF
https://github.com/EdOverflow/bugbounty-cheatsheet/blob/master/cheatsheets/ssrf.md
https://github.com/swisskyrepo/PayloadsAllTheThings/tree/master/Server%20Side%20Request%20Forgery

CRLF
https://github.com/EdOverflow/bugbounty-cheatsheet/blob/master/cheatsheets/crlf.md
https://github.com/swisskyrepo/PayloadsAllTheThings/tree/master/CRLF%20Injection

CSV-Injection
https://github.com/EdOverflow/bugbounty-cheatsheet/blob/master/cheatsheets/csv-injection.md
https://github.com/swisskyrepo/PayloadsAllTheThings/tree/master/CSV%20Injection

Command Injection
https://github.com/swisskyrepo/PayloadsAllTheThings/tree/master/Command%20Injection

Directory Traversal
https://github.com/swisskyrepo/PayloadsAllTheThings/tree/master/Directory%20Traversal

LFI
https://github.com/EdOverflow/bugbounty-cheatsheet/blob/master/cheatsheets/lfi.md
https://github.com/swisskyrepo/PayloadsAllTheThings/tree/master/File%20Inclusion

XXE
https://github.com/EdOverflow/bugbounty-cheatsheet/blob/master/cheatsheets/xxe.md

Open-Redirect
https://github.com/EdOverflow/bugbounty-cheatsheet/blob/master/cheatsheets/open-redirect.md

RCE
https://github.com/EdOverflow/bugbounty-cheatsheet/blob/master/cheatsheets/rce.md

Crypto
https://github.com/EdOverflow/bugbounty-cheatsheet/blob/master/cheatsheets/crypto.md

Template Injection
https://github.com/EdOverflow/bugbounty-cheatsheet/blob/master/cheatsheets/template-injection.md
https://github.com/swisskyrepo/PayloadsAllTheThings/tree/master/Server%20Side%20Template%20Injection

XSLT
https://github.com/EdOverflow/bugbounty-cheatsheet/blob/master/cheatsheets/xslt.md

Content Injection
https://github.com/EdOverflow/bugbounty-cheatsheet/blob/master/cheatsheets/content-injection.md

LDAP Injection
https://github.com/swisskyrepo/PayloadsAllTheThings/tree/master/LDAP%20Injection

NoSQL Injection
https://github.com/swisskyrepo/PayloadsAllTheThings/tree/master/NoSQL%20Injection

CSRF Injection
https://github.com/swisskyrepo/PayloadsAllTheThings/tree/master/CSRF%20Injection

GraphQL Injection
https://github.com/swisskyrepo/PayloadsAllTheThings/tree/master/GraphQL%20Injection

IDOR
https://github.com/swisskyrepo/PayloadsAllTheThings/tree/master/Insecure%20Direct%20Object%20References

ISCM
https://github.com/swisskyrepo/PayloadsAllTheThings/tree/master/Insecure%20Source%20Code%20Management

LaTex Injection
https://github.com/swisskyrepo/PayloadsAllTheThings/tree/master/LaTeX%20Injection

OAuth
https://github.com/swisskyrepo/PayloadsAllTheThings/tree/master/OAuth

XPATH Injection
https://github.com/swisskyrepo/PayloadsAllTheThings/tree/master/XPATH%20Injection

Bypass Upload Tricky
https://github.com/swisskyrepo/PayloadsAllTheThings/tree/master/Upload%20Insecure%20Files
Forwarded from Python Programming (Satoru Gojou)
The best ChatGPT examples from around the web.

https://www.learngpt.com

#chatGPT #gpt #chat #AI #chatbot #bot @pyguru
How to optimize loading time of Emacs faster than 1 second?
ChatGPT:
There are several ways to optimize the startup time of Emacs, here are a few things you can try:

Use emacs -q: This starts emacs with no init file, which can help you identify if any packages or settings in your init file are causing slow startup.

Use emacs --debug-init: This starts emacs with the --debug-init flag, which can help you identify any errors in your init file that might be causing slow startup.

Use use-package: This is a package that can help you manage and optimize your packages. It allows you to lazy-load packages, which means that packages are only loaded when they are needed, rather than at startup.

Use straight.el package manager: This package manager optimizes package loading by compiling packages ahead-of-time and using a local cache, which can speed up package loading times.

Use gc-cons-threshold: This variable controls the amount of memory that Emacs will use before triggering garbage collection. By default, it's set to 800000 bytes. You can increase this value to reduce the number of garbage collection cycles and thus speed up the startup time.

Optimize your init file: Make sure your init file is well-organized and free of unnecessary settings or packages. You can also use the benchmark-init package to measure the time it takes for different parts of your init file to load and identify any slow parts.

Use profiler package: This package can help you to identify bottlenecks in your init file by profiling the execution time of various functions.

Use precompiled bytecode: This allows you to precompile your .el files to .elc files, which can speed up the loading process. you can use emacs -batch -f batch-byte-compile to precompile all your .el files.

It's important to note that these steps can help you optimize your emacs startup time, but it's not always possible to get emacs to start up in less than 1 second. The time required to load emacs depends on many factors, such as the speed of your computer and the number of packages you have installed.