Skip to content

Commit 9bcd0cf

Browse files
committed
hello
0 parents  commit 9bcd0cf

317 files changed

Lines changed: 31531 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: [aleff-github]
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
2+
name: Free and open source payloads for FlipperZero
3+
4+
on:
5+
# Runs on pushes targeting the default branch
6+
push:
7+
branches: ["main"]
8+
9+
# Allows you to run this workflow manually from the Actions tab
10+
workflow_dispatch:
11+
12+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
13+
permissions:
14+
contents: read
15+
pages: write
16+
id-token: write
17+
18+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
19+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
20+
concurrency:
21+
group: "pages"
22+
cancel-in-progress: false
23+
24+
jobs:
25+
# Build job
26+
build:
27+
runs-on: ubuntu-latest
28+
steps:
29+
- name: Checkout
30+
uses: actions/checkout@v3
31+
- name: Setup Pages
32+
uses: actions/configure-pages@v3
33+
- name: Build with Jekyll
34+
uses: actions/jekyll-build-pages@v1
35+
with:
36+
source: ./
37+
destination: ./_site
38+
- name: Upload artifact
39+
uses: actions/upload-pages-artifact@v1
40+
41+
# Deployment job
42+
deploy:
43+
environment:
44+
name: github-pages
45+
url: ${{ steps.deployment.outputs.page_url }}
46+
runs-on: ubuntu-latest
47+
needs: build
48+
steps:
49+
- name: Deploy to GitHub Pages
50+
id: deployment
51+
uses: actions/deploy-pages@v2
Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
# Change Remote Git Link
2+
3+
This script can be used to change the remote link from which updates will be downloaded and where new updates will be uploaded.
4+
5+
[![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2Faleff-github%2Fmy-flipper-shits&count_bg=%233C3C3C&title_bg=%233C3C3C&icon=linux.svg&icon_color=%23FFFFFF&title=views&edge_flat=false)](https://github.com/aleff-github/my-flipper-shits)
6+
7+
**Category**: Execution
8+
9+
<div align=center>
10+
11+
<img src="https://github.com/aleff-github/my-flipper-shits/blob/main/img/logo-repository-2_0.gif" width="600" /><br><img src="https://github.com/aleff-github/my-flipper-shits/blob/main/img/DISCLAIMER.png" width="600" />
12+
13+
</div>
14+
15+
## Description
16+
17+
This script can be used to change the remote link from which updates will be downloaded and where new updates will be uploaded.
18+
19+
This script turns out to be very useful for aviting data leaks between old cloned repositories and new online repositories.
20+
21+
To make it easier to use below you can find the various tested configurations, at the moment it is not available for macOS because since I do not have one it cannot be tested and therefore I cannot give the certainty that it works, however I hope that in the Hak5 community there may be someone who can contribute to this payload by completing it with this missing part.
22+
23+
## Payload.txt config - Windows 10/11 - Tested on Windows 11
24+
25+
```DuckyScript
26+
DELAY 1000
27+
GUI r
28+
DELAY 1000
29+
STRING powershell
30+
ENTER
31+
DELAY 2000
32+
```
33+
34+
## Payload.txt config - Linux (Debian based) - Tested on Ubuntu 23.04
35+
36+
```DuckyScript
37+
DELAY 1000
38+
CTRL-ALT t
39+
DELAY 2000
40+
```
41+
42+
43+
## Dependencies
44+
45+
* Internet Connection
46+
* git installed
47+
* Full path of the cloned repository
48+
* ExecutionPolicy Bypass
49+
50+
## Settings
51+
52+
- Full path of the local repository i.e. "C:\Users\User\Documents\Repository1"
53+
```DuckyScript
54+
DEFINE #FULL-PATH example
55+
```
56+
57+
- Link from which updates are to be downloaded so the new repository the Repository2
58+
```DuckyScript
59+
DEFINE #NEW-GIT-LINK example.git
60+
```
61+
62+
- REM Define the branch of the new repository Repository2, i.e. "main"
63+
```DuckyScript
64+
DEFINE #BRANCH example
65+
```
66+
67+
## Credits
68+
69+
<h2 align="center"> Aleff :octocat: </h2>
70+
<div align=center>
71+
<table>
72+
<tr>
73+
<td align="center" width="96">
74+
<a href="https://github.com/aleff-github">
75+
<img src=https://github.com/aleff-github/aleff-github/blob/main/img/github.png?raw=true width="48" height="48" />
76+
</a>
77+
<br>Github
78+
</td>
79+
<td align="center" width="96">
80+
<a href="https://www.linkedin.com/in/alessandro-greco-aka-aleff/">
81+
<img src=https://github.com/aleff-github/aleff-github/blob/main/img/linkedin.png?raw=true width="48" height="48" />
82+
</a>
83+
<br>Linkedin
84+
</td>
85+
</tr>
86+
</table>
87+
</div>
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
REM ###########################################
2+
REM # |
3+
REM # Title : Change Remote Git Link |
4+
REM # Author : Aleff |
5+
REM # Version : 1.0 |
6+
REM # Category : Execution |
7+
REM # Target : Windows 10-11/Linux |
8+
REM # |
9+
REM ###########################################
10+
11+
REM Requirements:
12+
REM - Internet Connection
13+
REM - git installed
14+
REM - Full path of the cloned repository
15+
REM - ExecutionPolicy Bypass if runned on Windows
16+
17+
REM Full path of the local repository i.e. "C:\Users\User\Documents\Repository1"
18+
DEFINE #FULL-PATH example
19+
20+
REM Link from which updates are to be downloaded so the new repository the Repository2
21+
DEFINE #NEW-GIT-LINK example.git
22+
23+
REM Define the branch of the new repository Repository2, i.e. "main"
24+
DEFINE #BRANCH example
25+
26+
DELAY 1000
27+
GUI r
28+
DELAY 1000
29+
STRING powershell
30+
ENTER
31+
DELAY 2000
32+
33+
STRINGLN cd #FULL-PATH
34+
DELAY 1000
35+
STRINGLN git remote set-url origin #NEW-GIT-LINK
36+
DELAY 1000
37+
STRINGLN git pull --force origin #BRANCH
38+
DELAY 1000
39+
STRINGLN git reset --hard origin/#BRANCH
40+
DELAY 1000
41+
42+
ALT F4
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
2+
# Change MAC Address - BadUSB ✅
3+
4+
A script used to change the MAC address on a Linux machine.
5+
6+
[![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2Faleff-github%2Fmy-flipper-shits&count_bg=%233C3C3C&title_bg=%233C3C3C&icon=linux.svg&icon_color=%23FFFFFF&title=views&edge_flat=false)](https://github.com/aleff-github/my-flipper-shits)
7+
8+
**Category**: Execution
9+
10+
<div align=center>
11+
12+
<img src="https://github.com/aleff-github/my-flipper-shits/blob/main/img/logo-repository-2_0.gif" width="600" /><br><img src="https://github.com/aleff-github/my-flipper-shits/blob/main/img/DISCLAIMER.png" width="600" />
13+
14+
</div>
15+
16+
## Description
17+
18+
A script used to change the MAC address on a Linux machine.
19+
20+
Opens a shell, get the network card name, set the new MAC address, erase traces.
21+
22+
## Getting Started
23+
24+
### Dependencies
25+
26+
* Linux Permissions
27+
* Internet Connection
28+
29+
### Executing program
30+
31+
* Plug in your device
32+
33+
### Settings
34+
35+
* Set the sudo password
36+
* Change as you want the new MAC address
37+
38+
## Credits
39+
40+
<h2 align="center"> Aleff :octocat: </h2>
41+
<div align=center>
42+
<table>
43+
<tr>
44+
<td align="center" width="96">
45+
<a href="https://github.com/aleff-github">
46+
<img src=https://github.com/aleff-github/aleff-github/blob/main/img/github.png?raw=true width="48" height="48" />
47+
</a>
48+
<br>Github
49+
</td>
50+
<td align="center" width="96">
51+
<a href="https://www.linkedin.com/in/alessandro-greco-aka-aleff/">
52+
<img src=https://github.com/aleff-github/aleff-github/blob/main/img/linkedin.png?raw=true width="48" height="48" />
53+
</a>
54+
<br>Linkedin
55+
</td>
56+
</tr>
57+
</table>
58+
</div>
Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
2+
REM ###########################################
3+
REM # |
4+
REM # Title : Change Linux MAC Address |
5+
REM # Author : Aleff |
6+
REM # Version : 1.0 |
7+
REM # Category : Execution |
8+
REM # Target : Linux |
9+
REM # |
10+
REM ###########################################
11+
12+
REM Requirements:
13+
REM - Permissions
14+
15+
DELAY 1000
16+
CTRL-ALT t
17+
DELAY 2000
18+
19+
20+
REM #### PERMISSIONS SECTION ####
21+
22+
23+
REM You need to know the sudo password and replace 'example' with this
24+
DEFINE SUDO_PASS example
25+
26+
STRING sudo su
27+
ENTER
28+
DELAY 1000
29+
STRING SUDO_PASS
30+
ENTER
31+
DELAY 1000
32+
33+
34+
REM #### MAC SECTION ####
35+
36+
37+
REM net-tools command
38+
STRING apt install net-tools
39+
ENTER
40+
DELAY 2000
41+
42+
REM Set here your preferred MAC, you can don't change it remaining with the default value
43+
DEFINE NEW_MAC 42:02:07:8f:a7:38
44+
45+
REM Get the net interface name
46+
STRING INTERFACE=$(ip route get 8.8.8.8 | awk '{print $5}')
47+
ENTER
48+
DELAY 500
49+
50+
STRING ifconfig $INTERFACE down
51+
ENTER
52+
DELAY 500
53+
54+
STRING ifconfig $INTERFACE hw ether
55+
STRING NEW_MAC
56+
ENTER
57+
DELAY 500
58+
59+
STRING ifconfig $INTERFACE up
60+
ENTER
61+
DELAY 500
62+
63+
64+
REM #### REMOVE TRACES ####
65+
66+
67+
DELAY 2000
68+
STRING history -c
69+
ENTER
70+
71+
REM Close shell
72+
STRING exit
73+
ENTER
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
2+
# Change Network Configuration - BadUSB ✅
3+
4+
A script used to change the network configuration on a Linux machine.
5+
6+
[![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2Faleff-github%2Fmy-flipper-shits&count_bg=%233C3C3C&title_bg=%233C3C3C&icon=linux.svg&icon_color=%23FFFFFF&title=views&edge_flat=false)](https://github.com/aleff-github/my-flipper-shits)
7+
8+
**Category**: Execution
9+
10+
<div align=center>
11+
12+
<img src="https://github.com/aleff-github/my-flipper-shits/blob/main/img/logo-repository-2_0.gif" width="600" /><br><img src="https://github.com/aleff-github/my-flipper-shits/blob/main/img/DISCLAIMER.png" width="600" />
13+
14+
</div>
15+
16+
## Description
17+
18+
A script used to change the network configuration on a Linux machine.
19+
20+
Opens a shell, get the network card name, set the network configuration, erase traces.
21+
22+
## Getting Started
23+
24+
### Dependencies
25+
26+
* Linux Permissions
27+
* Internet Connection
28+
29+
### Executing program
30+
31+
* Plug in your device
32+
33+
### Settings
34+
35+
* Set the sudo password
36+
* Change as you want the network configuration
37+
38+
## Credits
39+
40+
<h2 align="center"> Aleff :octocat: </h2>
41+
<div align=center>
42+
<table>
43+
<tr>
44+
<td align="center" width="96">
45+
<a href="https://github.com/aleff-github">
46+
<img src=https://github.com/aleff-github/aleff-github/blob/main/img/github.png?raw=true width="48" height="48" />
47+
</a>
48+
<br>Github
49+
</td>
50+
<td align="center" width="96">
51+
<a href="https://www.linkedin.com/in/alessandro-greco-aka-aleff/">
52+
<img src=https://github.com/aleff-github/aleff-github/blob/main/img/linkedin.png?raw=true width="48" height="48" />
53+
</a>
54+
<br>Linkedin
55+
</td>
56+
</tr>
57+
</table>
58+
</div>

0 commit comments

Comments
 (0)