开发在线服务器免费撸,可作为攻击机和代码测试

暂时无法解决root权限 没有sudo 尝试使用tryhackme里面的 privlagelinux
https://github.com/lvwuwei/LinEnum
./LinEnum.sh 收集情报,,./shell 用于提取 未成功。。。
linux系统提权参考 https://byy3.com/?p=581
服务器临时性 关闭或重启数据丢失 需要重新部署
来源:https://github.com/lvwuwei/geopandas
在线python的jupyter notebook测试代码https://mybinder.org/v2/gh/geopandas/geopandas/master
部署机器后选择 新建termal作为部署机器然后再 git clone https://github.com/lvwuwei/traffic_monitor/ 代码
或部署桌面环境linux 的lxde桌面 在线 DOCKER
(暂时无法部署没有权限)
docker run -p 6080:80 -v /dev/shm:/dev/shm dorowu/ubuntu-desktop-lxde-vnc

IP 194.95.75.12 8GMem 6GFree
2,https://ovh.mybinder.org/ 3GMem 1.5GFree
3,https://mybinder.org/v2/gh/google/jax/b651d7b95ebd496a95465705996f07ba3b31b5f0
ip 35.202.252.203 2GMem 1Gfree
IP 23.236.60.183 5GMem 1GFree
5, https://repl.it/@lvwuwei/ 0.5GMem 0.5Gstorage 0.2-0.5G Vcpus
IP 35.187.42.13 16Gb Mem 13Gb free 4Vcpus ROOT权限
https://notebooks.gesis.org/hub/home 怎样挂机 测试新开一个ternimal #top查看进程
新建一个python程序while.py
#coding: utf-8
while(1):
print('停不下来')
#这样htop一下发现进程很高cpu70%
#于是采用time计时器1秒打印一次cpu平均10%
#coding:utf-8
i=1
import time
while 1: if i>3600: hour=i//3600 minute=i%3600//60 second=i%3600%60 print('time is:'+str(hour)+'小时'+str(minute)+'分钟'+str(second)+'秒') elif 60<=i<3600: minute=i%3600//60 second=i%3600%60 print('time is:'+str(minute)+'分钟'+str(second)+'秒') if i==86400: #等于24小时 break elif i<60: second=i%3600%60 print('time is:'+str(second)+'秒') time.sleep(1) i+=1
未完结 ……