Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/d3fenderz/bash-scripts
Various Bash scripts that used to be separate repos. All-In-One repo!
https://github.com/d3fenderz/bash-scripts
anti-ddos bash-script experimental fun linux poc security unix
Last synced: 23 days ago
JSON representation
Various Bash scripts that used to be separate repos. All-In-One repo!
- Host: GitHub
- URL: https://github.com/d3fenderz/bash-scripts
- Owner: d3fenderz
- License: gpl-3.0
- Created: 2023-02-23T22:30:51.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-13T13:21:00.000Z (almost 2 years ago)
- Last Synced: 2024-11-06T02:42:54.298Z (2 months ago)
- Topics: anti-ddos, bash-script, experimental, fun, linux, poc, security, unix
- Language: Shell
- Homepage:
- Size: 23.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bash Scripts (J.)
## How to
It's better to make those scripts executable with `chmod +x [ SCRIPT ]` and then execute them like that:
```
./[ SCRIPT ]
```Alternatively, you may use:
```
bash [ SCRIPT ]
```Here are additional instructions for specific scripts:
### ProcDDoS
```
sudo su
./proc_ddos
```### FileCleaner
```
./file_cleaner [ FILE_1 ] [ FILE_2 ] [ FILE_n ]
```Alternatively, you can pass wildcards:
```
./file_cleaner *.jpg
```## How to use submodules
You may need the following command if it's your first clone of the project:
```
git clone [email protected]:d3fenderz/bash-scripts.git && cd bash-scripts
git submodule update --init --recursive
```Otherwise, you may download each script one by one.