├── .gitignore ├── IMG-20240810-WA0013.jpg ├── LICENSE ├── README.md ├── chisel.sh ├── funny.py ├── ohp.sh ├── other-proxy.sh └── slowdns.sh /.gitignore: -------------------------------------------------------------------------------- 1 | # Prerequisites 2 | *.d 3 | 4 | # Compiled Object files 5 | *.slo 6 | *.lo 7 | *.o 8 | *.obj 9 | 10 | # Precompiled Headers 11 | *.gch 12 | *.pch 13 | 14 | # Compiled Dynamic libraries 15 | *.so 16 | *.dylib 17 | *.dll 18 | 19 | # Fortran module files 20 | *.mod 21 | *.smod 22 | 23 | # Compiled Static libraries 24 | *.lai 25 | *.la 26 | *.a 27 | *.lib 28 | 29 | # Executables 30 | *.exe 31 | *.out 32 | *.app 33 | -------------------------------------------------------------------------------- /IMG-20240810-WA0013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DindaPutriFN/Autoscript/be11ce40f3c53611f158d4da126312f313f12701/IMG-20240810-WA0013.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 |

4 |

5 | 6 |

7 |

8 | 9 |

10 | 11 | ![Rerechan02 card name](https://cardivo.vercel.app/api?name=Rerechan02『𝐅𝐍』&description=Hi,%20everyone!%20and%20Nice%20to%20meet%20you%20%F0%9F%91%8B&image=https://raw.githubusercontent.com/Rerechan02/simple-xray/main/funny1.jpg?v=4&backgroundColor=%23ecf0f1&telegram=/&github=Rerechan02&pattern=leaf&colorPattern=%23eaeaea) 12 | 13 | ### Install 14 | `things needed before installing` 15 | ``` 16 | - Virtual Private Server [ VPS ] 17 | - Subdomain / Domain Server 18 | - Nameserver Slowdns 19 | ``` 20 | ***ROOT*** 21 | ``` 22 | sudo su 23 | ``` 24 | ***TAHAP 1*** 25 | ``` 26 | apt update -y; apt install gnupg tmux python3 -y; tmux new -s fn 27 | ``` 28 | ***TAHAP 2*** 29 | ``` 30 | wget https://raw.githubusercontent.com/DindaPutriFN/Autoscript/main/funny.py; chmod +x funny.py; python3 funny.py 31 | ``` 32 | ***If there is a disconnection during installation*** 33 | ``` 34 | tmux attach-session -t fn 35 | ``` 36 | 37 |
Service & Port 38 |

39 | 40 | 41 | # SSH 42 | ``` 43 | - OpenSSH : 22, 3303, 53, 443 44 | - Dropbear : 109, 111, 69 45 | - Stunnel : 443 46 | - Websocket HTTP : 80, 2082 47 | - Websocket HTTPS : 443 48 | - UDP Custom : 1-65535 49 | ``` 50 | 51 | # NoobZVPN'S 52 | ``` 53 | TCP STD / HTTP : 8080 54 | TCP SSL / HTTPS : 8443 55 | ``` 56 | 57 | # OpenVPN 58 | ``` 59 | - TCP : 1194 60 | - UDP : 2200 61 | - WebSocket HTTPS : 443 62 | - WebSocket HTTP : 80 63 | - SSL/TLS/STUNNEL : 443 64 | - HTTP PROXY : 8888 65 | - OHP SERVER : 8181, 8282, 8383 66 | ``` 67 | 68 | # X-Ray WebSocket 69 | ``` 70 | - Vmess : 80, 8880, 443 71 | - Vless : 80, 443 72 | - Trojan : 80, 443 73 | - Socks5 : 80, 443 74 | - Shadowsocks : 80, 443 75 | ``` 76 | 77 | # TROJAN GO 78 | ``` 79 | - Trojan Go Websocket TLS : 2087 80 | ``` 81 | 82 | # Other 83 | ``` 84 | - API : - 85 | - Nginx : - 86 | - SSLH : 8062 87 | - gRPC : 443 88 | - BadVPN : 7300 89 | - SlowDNS : 5300, 5353 90 | - Chisel TLS : 9443 91 | - Chisel HTTP: 8000 92 | ``` 93 | 94 | # PATH SSH 95 | ``` 96 | - OpenSSH : /custom 97 | - Dropbear : /custom 98 | - Stunnel4 : /custom 99 | - Websocket HTTP : /custom 100 | - Websocket HTTPS : /custom 101 | ``` 102 | 103 | # PATH NoobZVPN'S 104 | ``` 105 | TCP STD / HTTP : /custom | /noobz 106 | TCP SSL / HTTPS : /custom | /noobz 107 | ``` 108 | 109 | # PATH X-RAY WebSocket 110 | ``` 111 | - Vmess : /vmess | /vmessws | /custom 112 | - Vless : /vless | /vlessws 113 | - Trojan : /trojan | /trojanws 114 | - Socks5 : /socks5 | /socks5ws 115 | - Shadowsocks : /ssws 116 | ``` 117 | 118 | # PATH TROJAN GO 119 | ``` 120 | - Trojan Go : /trojango 121 | ``` 122 | 123 | # Core All Service 124 | ``` 125 | - Websocket Python 126 | - Websocket Enhanced 127 | - Websocket WsEpro 128 | - SSLH Fork Original Core 129 | - X-Ray Default Core @Lastest 130 | - Trojan Go / Igniter Go Mod 131 | - Proxy Server Python3 132 | ``` 133 | 134 | # Feature 135 | ``` 136 | - Cek Usage | htop 137 | - Bot Notification telegram 138 | - Bot Terminal telegram 139 | - Bot Panel telegram 140 | - Change Timezone Server 141 | - Update Kernel OS New Version 142 | - Backup & Restore Via Link & FTP 143 | - Plugin Hide SSH store 144 | - Report Bug to Admin 145 | - Certificate Default / IPv4 + IPv6 146 | - Limit Quota & Cek total usage quota xray 147 | - Limit IP SSH Auto Lock 15 Minutes 148 | - Trial Account With 60M Acitive 149 | ``` 150 |

151 | 152 |
Information 153 | ## Info 154 | ```diff 155 | - SSLH Mod FunnyVPN 156 | - WebAPI with Curl 157 | - Telegram Owner : @Rerechan02 / @fn_project 158 | ``` 159 | - Script created by @Rerechan02 X @PR_Aiman [ FN Project Team ] 160 | - SSLH core mod by FunnyVPN Autoscript 1.2 161 | - X-Ray Core use Xray Core Original @Lastest Version 162 | - WebAPI use curl METHOD: POST, GET, PUT & DELETE 163 | - Support Limit Quota X-Ray Account 164 | ```diff 165 | - Autoscript Free Version @Lastest 166 | - Autoscript By FN Project Team 167 | - Autoscript This does not require permission to use it 168 | - I really hate people who decrypt this script, if you decrypt it you should include credits 169 | ``` 170 | 171 | ## Dev : 172 | - [@Rerechan02](https://t.me/Rerechan02) 173 | - [@PR_Aiman](https://github.com/praiman99) 174 | - [@L Aditya](https://t.me/farell_aditya_ardian) 175 | - [@FN Project](https://t.me/fn_project) 176 | 177 |

178 | 179 | 180 |
181 |
182 | 183 |
System Support 184 | ### System Support 185 | # Debian: 186 | - 9 ( Stretch ) ![Unstable](https://img.shields.io/badge/status-Unstable-orange) 187 | - 10 ( Buster ) ![Stable](https://img.shields.io/badge/status-Stable-brightgreen) 188 | - 11 ( Bullseye ) ![Stable](https://img.shields.io/badge/status-Stable-brightgreen) 189 | - 12 ( Bookworm ) ![Error](https://img.shields.io/badge/status-Error-red) 190 | - 13 ( Trixie ) ![ComingSoon](https://img.shields.io/badge/status-Coming%20Soon-blue) 191 | - 14 ( Forky ) ![ComingSoon](https://img.shields.io/badge/status-Coming%20Soon-blue) 192 | 193 | # Ubuntu: 194 | - 18.04 LTS ( Bionic ) ![Unstable](https://img.shields.io/badge/status-Unstable-orange) 195 | - 18.10 ( Cosmic ) ![Unstable](https://img.shields.io/badge/status-Unstable-orange) 196 | - 19.04 ( Disco ) ![Unstable](https://img.shields.io/badge/status-Unstable-orange) 197 | - 19.10 ( Eoan ) ![Unstable](https://img.shields.io/badge/status-Unstable-orange) 198 | - 20.04 LTS ( Focal ) ![Stable](https://img.shields.io/badge/status-Stable-brightgreen) 199 | - 20.10 ( Giroovy ) ![Stable](https://img.shields.io/badge/status-Stable-brightgreen) 200 | - 21.04 ( Hirsute ) ![Stable](https://img.shields.io/badge/status-Stable-brightgreen) 201 | - 21.10 ( Impish ) ![Stable](https://img.shields.io/badge/status-Stable-brightgreen) 202 | - 22.04 LTS ( Jammy ) ![Stable](https://img.shields.io/badge/status-Stable-brightgreen) 203 | - 22.10 ( Kinetic ) ![Stable](https://img.shields.io/badge/status-Stable-brightgreen) 204 | - 23.04 ( Lunar ) ![Unstable](https://img.shields.io/badge/status-Unstable-orange) 205 | - 23.10 ( Mantic ) ![Unstable](https://img.shields.io/badge/status-Unstable-orange) 206 | - 24.04 LTS ( Noble ) ![Error](https://img.shields.io/badge/status-Error-red) 207 | - 24.10 ( Oracular ) ![Error](https://img.shields.io/badge/status-Error-red) 208 | 209 | # Kali: 210 | - Kali Linux Rolling ![Stable](https://img.shields.io/badge/status-Stable-brightgreen) 211 | 212 | # Virtualization: 213 | - Xen 214 | - KVM 215 | - VMware 216 | - XenServer 217 | - LXC (Linux Containers) 218 | - OpenVZ 7 (Open Virtuozzo 7) 219 | - Proxmox 220 | - Virtuozzo 221 | - Master Server 222 | - ZFS 223 | 224 | # Minimum Specifications: 225 | - Ram 512MB ![Stable](https://img.shields.io/badge/status-Stable-brightgreen) 226 | - SSD 10GB ![Stable](https://img.shields.io/badge/status-Stable-brightgreen) 227 | - 1vCPU ![Stable](https://img.shields.io/badge/status-Stable-brightgreen) 228 | 229 | # Recomended 230 | - All Ubuntu < 24.04 LTS 231 | - All Debian < 12 232 | - All Kali Linux 233 | - All Virtualization 234 | - 1vCPU 1GB Ram 10GB SSD
235 | 236 | ### Base Code 237 | - [Source](https://t.me/fn_project/392) 238 | 239 | ### STATUS 240 | `@Lastest` 241 | 242 | ### SETTING CLOUDFLARE 243 | ``` 244 | - SSL/TLS : FULL 245 | - SSL/TLS Recommender : ON 246 | - GRPC : ON 247 | - WEBSOCKET : ON 248 | - Always Use HTTPS : OFF 249 | - UNDER ATTACK MODE : OFF 250 | ``` 251 | 252 | ## Uptime Status 253 | - [@UPTIME](https://status.org.cn/) 254 | 255 | ### Docs API 256 | - [ Web API Docs ](https://t.me/fn_project/1527) 257 | 258 | ### Docs Pointing 259 | - [Tutorial Pointing SUBDOMAIN & NAMSERVER SLOWDNS Docs ](https://t.me/fn_project/1527) 260 | 261 | ### Donate To Admin 262 | `DONATE E-Wallet Indo / Malay` 263 | - DANA : `087848417898` [ L ADITYA ] 264 | - Gopay : `083120684925` [ Dinda Putri ] 265 | - Shopepay : `083120684925` [ Rerechan02 ] 266 | - Qris All Payment [qris](https://t.me/fn_project/245) 267 | 268 | `Donate To Other Region` 269 | - PR_Aiman [donate](https://sociabuzz.com/praiman/tribe?_ref=li>) 270 | - Paypal: `melon3344556@gmail.com` 271 | - TON Network: `UQBoVC_vTCo6e2IVV1T21gyj0BVLaMwDd4qeooNjKaFQDl9j` 272 |
If you transfer via PayPal, please select the As Family option 273 | 274 | ![image](https://raw.githubusercontent.com/Rerechan02/simple-xray/main/funny2.png)
275 | 276 |

277 | 278 |

279 | 280 | 281 | ## License 282 | Repository ini dilindungi oleh lisensi [PAK POLISI](https://satpolpp.kebumenkab.go.id/index.php) 283 | Karya ini dilisensikan di bawah [CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/). 284 | 285 | ![Lisensi Creative Commons](https://mirrors.creativecommons.org/presskit/icons/cc.svg) 286 | ![Lisensi Creative Commons](https://mirrors.creativecommons.org/presskit/icons/by.svg) 287 | ![Lisensi Creative Commons](https://mirrors.creativecommons.org/presskit/icons/sa.svg) 288 | -------------------------------------------------------------------------------- /chisel.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Memastikan skrip dijalankan sebagai root 4 | if [ "$EUID" -ne 0 ]; then 5 | echo "Please run as root" 6 | exit 1 7 | fi 8 | 9 | # Menentukan URL download untuk Chisel versi terbaru (pastikan ini adalah versi yang diinginkan) 10 | url="https://raw.githubusercontent.com/nadiavpn/Apex/main/chisel" 11 | 12 | # Download file Chisel 13 | echo "Downloading Chisell..." 14 | wget -q -O /usr/bin/chisell "${url}" 15 | 16 | # Memberikan izin eksekusi pada file Chisel 17 | chmod +x /usr/bin/chisell 18 | 19 | # Membuat file service systemd untuk Chisel di port 9443 (HTTPS) 20 | echo "Creating systemd service for Chisel SSL (port 9443)..." 21 | cat < /etc/systemd/system/chisell-ssl.service 22 | [Unit] 23 | Description=Chisel Server SSL By FN Project 24 | After=network.target 25 | 26 | [Service] 27 | ExecStart=/usr/bin/chisell server --port 9443 --tls-key /etc/xray/xray.key --tls-cert /etc/xray/xray.crt --socks5 28 | Restart=always 29 | User=nobody 30 | Group=nogroup 31 | 32 | [Install] 33 | WantedBy=multi-user.target 34 | EOF 35 | 36 | # Membuat file service systemd untuk Chisel di port 8000 (HTTP) 37 | echo "Creating systemd service for Chisel HTTP (port 8000)..." 38 | cat < /etc/systemd/system/chisell-http.service 39 | [Unit] 40 | Description=Chisel Server HTTP By FN Project 41 | After=network.target 42 | 43 | [Service] 44 | ExecStart=/usr/bin/chisell server --port 8000 --socks5 45 | Restart=always 46 | User=nobody 47 | Group=nogroup 48 | 49 | [Install] 50 | WantedBy=multi-user.target 51 | EOF 52 | 53 | # Memuat ulang daemon systemd 54 | echo "Reloading systemd daemon..." 55 | systemctl daemon-reload 56 | 57 | # Mengaktifkan dan memulai service Chisel SSL (port 9443) 58 | echo "Enabling and starting Chisel SSL service..." 59 | systemctl enable chisell-ssl.service 60 | systemctl start chisell-ssl.service 61 | 62 | # Mengaktifkan dan memulai service Chisel HTTP (port 8000) 63 | echo "Enabling and starting Chisel HTTP service..." 64 | systemctl enable chisell-http.service 65 | systemctl start chisell-http.service 66 | 67 | #Merestart layanan 68 | sudo iptables -A INPUT -p tcp --dport 8000 -j ACCEPT 69 | sudo iptables -A INPUT -p tcp --dport 9443 -j ACCEPT 70 | sudo ufw allow 8000/tcp 71 | sudo ufw allow 9443/tcp 72 | systemctl restart chisell-http.service 73 | systemctl restart chisell-ssl.service 74 | 75 | # Membersihkan layar 76 | rm -fr chisel.sh 77 | clear -------------------------------------------------------------------------------- /funny.py: -------------------------------------------------------------------------------- 1 | import subprocess 2 | import os 3 | 4 | def main(): 5 | os.system('clear') 6 | 7 | url = "https://github.com/DindaPutriFN/Autoscript/releases/download/1.14/fn.sh" 8 | subprocess.run(['wget', '-O', 'setup.sh', '-q', url]) 9 | 10 | subprocess.run(['chmod', '+x', 'setup.sh']) 11 | 12 | subprocess.run(['./setup.sh']) 13 | 14 | subprocess.run(['rm', '-fr', 'setup.sh']) 15 | 16 | if __name__ == "__main__": 17 | main() 18 | -------------------------------------------------------------------------------- /ohp.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Open Http Puncher 3 | 4 | # Download File Ohp 5 | 6 | cd /usr/bin 7 | wget -O ohp "https://raw.githubusercontent.com/DindaPutriFN/FN-API/main/ohp" 8 | chmod +x /usr/bin/ohp 9 | 10 | # Installing Service 11 | # SSH OHP Port 8181 12 | cat > /etc/systemd/system/ssh-ohp.service << END 13 | [Unit] 14 | Description=SSH OHP Redirection Service 15 | Documentation=t.me/fn_project 16 | After=network.target nss-lookup.target 17 | 18 | [Service] 19 | Type=simple 20 | User=root 21 | CapabilityBoundingSet=CAP_NET_ADMIN CAP_NET_BIND_SERVICE 22 | AmbientCapabilities=CAP_NET_ADMIN CAP_NET_BIND_SERVICE 23 | NoNewPrivileges=true 24 | ExecStart=/usr/bin/ohp -port 8181 -proxy 127.0.0.1:8888 -tunnel 127.0.0.1:22 25 | Restart=on-failure 26 | LimitNOFILE=infinity 27 | 28 | [Install] 29 | WantedBy=multi-user.target 30 | END 31 | 32 | # Dropbear OHP 8282 33 | cat > /etc/systemd/system/dropbear-ohp.service << END 34 | [Unit]] 35 | Description=Dropbear OHP Redirection Service 36 | Documentation=https://t.me/fn_project 37 | After=network.target nss-lookup.target 38 | 39 | [Service] 40 | Type=simple 41 | User=root 42 | CapabilityBoundingSet=CAP_NET_ADMIN CAP_NET_BIND_SERVICE 43 | AmbientCapabilities=CAP_NET_ADMIN CAP_NET_BIND_SERVICE 44 | NoNewPrivileges=true 45 | ExecStart=/usr/bin/ohp -port 8282 -proxy 127.0.0.1:8888 -tunnel 127.0.0.1:143 46 | Restart=on-failure 47 | LimitNOFILE=infinity 48 | 49 | [Install] 50 | WantedBy=multi-user.target 51 | END 52 | 53 | # OpenVPN OHP 8383 54 | cat > /etc/systemd/system/openvpn-ohp.service << END 55 | [Unit]] 56 | Description=OpenVPN OHP Redirection Service 57 | Documentation=t.me/fn_project 58 | After=network.target nss-lookup.target 59 | 60 | [Service] 61 | Type=simple 62 | User=root 63 | CapabilityBoundingSet=CAP_NET_ADMIN CAP_NET_BIND_SERVICE 64 | AmbientCapabilities=CAP_NET_ADMIN CAP_NET_BIND_SERVICE 65 | NoNewPrivileges=true 66 | ExecStart=/usr/bin/ohp -port 8383 -proxy 127.0.0.1:8888 -tunnel 127.0.0.1:1194 67 | Restart=on-failure 68 | LimitNOFILE=infinity 69 | 70 | [Install] 71 | WantedBy=multi-user.target 72 | END 73 | 74 | sudo iptables -A INPUT -p tcp --dport 8181 -j ACCEPT 75 | sudo iptables -A INPUT -p tcp --dport 8282 -j ACCEPT 76 | sudo iptables -A INPUT -p tcp --dport 8383 -j ACCEPT 77 | sudo ufw allow 8383/tcp 78 | sudo ufw allow 8181/tcp 79 | sudo ufw allow 8282/tcp 80 | 81 | # Daemon 82 | systemctl daemon-reload 83 | 84 | # Enable 85 | systemctl enable ssh-ohp 86 | systemctl enable dropbear-ohp 87 | systemctl enable openvpn-ohp 88 | 89 | # Firewall 90 | sudo iptables -A INPUT -p tcp --dport 8181 -j ACCEPT 91 | sudo iptables -A INPUT -p tcp --dport 8282 -j ACCEPT 92 | sudo iptables -A INPUT -p tcp --dport 8383 -j ACCEPT 93 | sudo ufw allow 8383/tcp 94 | sudo ufw allow 8181/tcp 95 | sudo ufw allow 8282/tcp 96 | 97 | # Restart 98 | systemctl restart openvpn-ohp 99 | systemctl restart dropbear-ohp 100 | systemctl restart ssh-ohp 101 | clear -------------------------------------------------------------------------------- /other-proxy.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Variabel 4 | TINC_PORT=655 5 | XMPP_PORT=5222 6 | ADB_PORT=5037 7 | domain=$(cat /etc/xray/domain) 8 | 9 | # Update sistem 10 | echo "Updating system..." 11 | #apt update -y 12 | #apt upgrade -y 13 | 14 | # Instalasi Tinc 15 | echo "Installing Tinc..." 16 | apt install -y tinc 17 | 18 | # Konfigurasi Tinc 19 | echo "Configuring Tinc..." 20 | TINC_DIR="/etc/tinc" 21 | mkdir -p $TINC_DIR/{myvpn,hosts} 22 | cat < /dev/null 51 | --- 52 | hosts: 53 | - "localhost" 54 | - "$domain" 55 | 56 | listen: 57 | - 58 | port: $XMPP_PORT 59 | module: ejabberd_c2s 60 | EOL 61 | 62 | # Instalasi ADB 63 | echo "Installing ADB..." 64 | apt install -y android-tools-adb 65 | 66 | # Konfigurasi ADB Serever 67 | adb kill-server 68 | adb start-server 69 | 70 | # Instalasi SSLH 71 | echo "Installing SSLH..." 72 | apt -y install sslh 73 | rm -fr /usr/sbin/sslh 74 | wget -O /usr/sbin/sslh "https://github.com/DindaPutriFN/sslh/releases/download/sslh-mod/sslh" 75 | chmod +x /usr/sbin/sslh 76 | 77 | # Konfigurasi sslh 78 | rm -f /etc/default/sslh 79 | cat> /etc/default/sslh << END 80 | RUN=yes 81 | DAEMON=/usr/sbin/sslh 82 | DAEMON_OPTS="--listen 0.0.0.0:443 --tls 127.0.0.1:777 --http 127.0.0.1:700 --openvpn 127.0.0.1:1194 --xmpp 127.0.0.1:5222 --tinc 127.0.0.1:655 --adb 127.0.0.1:5037 --ssh 127.0.0.1:3303 --anyprot 127.0.0.1:443 --pidfile /var/run/sslh/sslh.pid -n" 83 | END 84 | 85 | # Memprbaiki Pid SSLH 86 | clear 87 | rm -fr /var/run/sslh 88 | mkdir -p /var/run/sslh 89 | touch /var/run/sslh/sslh.pid 90 | chmod +x 777 /var/run/sslh/sslh.pid 91 | 92 | # Restart services 93 | echo "Restarting services..." 94 | systemctl daemon-reload 95 | systemctl restart tinc 96 | systemctl restart ejabberd 97 | systemctl restart sslh 98 | 99 | # Verifikasi instalasi 100 | echo "Verifying installations..." 101 | 102 | 103 | echo "Setup complete. Please verify each service individually." 104 | rm -fr /root/*.sh -------------------------------------------------------------------------------- /slowdns.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # |════════════════════════════════════════════════════════════════════════════════════════════════════════════════| 4 | # • Autoscript AIO Lite Menu By FN Project | 5 | # • FN Project Developer @Rerechan02 | @PR_Aiman | @farell_aditya_ardian | 6 | # • Copyright 2024 18 Marc Indonesia [ Kebumen ] | [ Johor ] | [ 上海,中国 ] | 7 | # |════════════════════════════════════════════════════════════════════════════════════════════════════════════════| 8 | # 9 | clear 10 | red='\e[1;31m' 11 | green='\e[0;32m' 12 | NC='\e[0m' 13 | echo "Please Wait ...." 14 | REQUIRED_PACKAGES=("curl" "wget" "dnsutils" "git" "screen" "whois" "pwgen" "python" "jq" "fail2ban" "sudo" "gnutls-bin" "mlocate" "dh-make" "libaudit-dev" "build-essential" "dos2unix" "debconf-utils") 15 | 16 | for package in "${REQUIRED_PACKAGES[@]}"; do 17 | if ! dpkg-query -W --showformat='${Status}\n' $package | grep -q "install ok installed"; then 18 | apt-get -qq install $package -y &>/dev/null 19 | fi 20 | done 21 | clear 22 | rm -fr /usr/bin/go ; wget https://go.dev/dl/go1.22.0.linux-amd64.tar.gz ; sudo tar -C /usr/local -xzf go1.22.0.linux-amd64.tar.gz ; rm -fr /root/go1.22.0.linux-amd64.tar.gz ; echo "export PATH="/usr/local/go/bin:$PATH:/rere"" > /root/.bashrc ; cd ; source .bashrc ; go version 23 | 24 | #wget -q -O- https://git.io/vQhTU | bash 25 | #source /root/.bashrc 26 | 27 | install_slowdns() { 28 | cd /root 29 | rm -rf /etc/slowdns 30 | git clone https://www.bamsoftware.com/git/dnstt.git 31 | cd dnstt/dnstt-server 32 | rm -fr go.sum 33 | go mod tidy 34 | go build 35 | mkdir -p /etc/slowdns/ 36 | mv dnstt-server /etc/slowdns/dns-server 37 | chmod +x /etc/slowdns/dns-server 38 | /etc/slowdns/dns-server -gen-key -privkey-file /etc/slowdns/server.key -pubkey-file /etc/slowdns/server.pub 39 | 40 | clear 41 | echo -e " 42 | ======================== 43 | SlowDNS / DNSTT Settings 44 | ========================" 45 | read -rp "Your Nameserver: " -e Nameserver 46 | echo -e "$Nameserver" > /etc/slowdns/nsdomain 47 | 48 | rm -f /etc/systemd/system/dnstt.service 49 | systemctl stop dnstt 2>/dev/null || true 50 | pkill dns-server 2>/dev/null || true 51 | 52 | cat >/etc/systemd/system/dnstt.service </dev/null 83 | iptables -t nat -I PREROUTING -i $interface -p udp --dport 53 -j REDIRECT --to-ports 5300 84 | iptables-save >/etc/iptables.up.rules 85 | iptables-restore < /etc/iptables.up.rules 86 | netfilter-persistent save 87 | netfilter-persistent reload 88 | } 89 | 90 | install_slowdns 91 | install_firewall 92 | 93 | rm -rf /root/slowdns.sh 94 | #rm -rf /root/*.sh 95 | clear 96 | echo -e "" 97 | echo -e "Installing Patch SlowDNS Autoscript done..." 98 | echo "done .." 99 | #reboot --------------------------------------------------------------------------------