├── Dockerfile ├── LICENSE └── README.md /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ubuntu:22.04 2 | RUN apt-get -y update && apt-get -y upgrade -y && apt-get install -y sudo 3 | RUN sudo apt-get install -y curl ffmpeg git locales nano python3-pip screen ssh unzip wget 4 | RUN localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8 5 | RUN curl -sL https://deb.nodesource.com/setup_21.x | bash - 6 | RUN sudo apt-get install -y nodejs 7 | ENV LANG en_US.utf8 8 | ARG NGROK_TOKEN 9 | ENV NGROK_TOKEN=${NGROK_TOKEN} 10 | RUN wget -O ngrok.zip https://bin.equinox.io/c/bNyj1mQVY4c/ngrok-v3-stable-linux-amd64.zip 11 | RUN unzip ngrok.zip 12 | RUN echo "./ngrok config add-authtoken ${NGROK_TOKEN} &&" >>/start 13 | RUN echo "./ngrok tcp --region ap 22 &>/dev/null &" >>/start 14 | RUN mkdir /run/sshd 15 | RUN echo '/usr/sbin/sshd -D' >>/start 16 | RUN echo 'PermitRootLogin yes' >> /etc/ssh/sshd_config 17 | RUN echo "PasswordAuthentication yes" >> /etc/ssh/sshd_config 18 | RUN echo root:kaal|chpasswd 19 | RUN service ssh start 20 | RUN chmod 755 /start 21 | EXPOSE 80 8888 8080 443 5130 5131 5132 5133 5134 5135 3306 22 | CMD /start 23 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Aditya Halder 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 | 🥀 [𝐊𝐚𝐚𝐥𝐢 𝐋𝐢𝐧𝐮𝐱](https://github.com/AdityaHalder/Kaali-Linux) : 🍁 𝐓𝐡𝐞 𝐍𝐞𝐰 𝐒𝐞𝐫𝐯𝐞𝐫 📡 4 | 𝐂𝐫𝐞𝐚𝐭𝐞𝐝 𝐀𝐧𝐝 💞 𝐌𝐚𝐧𝐚𝐠𝐞𝐝 𝐁𝐲 » [𝐊𝐚𝐚𝐋](https://t.me/iamkaal) ✨ 5 | 6 | ### 𝐑𝐞𝐪𝐮𝐢𝐫𝐞𝐝 𝐂𝐨𝐧𝐟𝐢𝐠 𝐕𝐚𝐫𝐢𝐚𝐛𝐥𝐞: 7 | - ``` NGROK_TOKEN``` : Get it from https://ngrok.com 8 | 9 | ### 𝐖𝐚𝐭𝐜𝐡 𝐅𝐮𝐥𝐥 𝐕𝐢𝐝𝐞𝐨 𝐓𝐮𝐭𝐨𝐫𝐢𝐚𝐥: 10 | - [Click Here To Watch Full Tutorial About How To Use This Repository.](https://youtube.com/@AdityaHalder) 11 | --------------------------------------------------------------------------------