Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UI changes to the Remote Shell #31

Merged
merged 4 commits into from
May 21, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add files via upload
  • Loading branch information
MrDevBot authored May 21, 2019
commit 170cb445590aab45fc24566a4ba6a86a52aad7bb
147 changes: 90 additions & 57 deletions AsyncRAT-C#/AsyncRAT-Sharp/Forms/FormShell.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 12 additions & 1 deletion AsyncRAT-C#/AsyncRAT-Sharp/Forms/FormShell.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.Linq;
using System.Text;
Expand Down Expand Up @@ -56,6 +57,16 @@ private void FormShell_FormClosed(object sender, FormClosedEventArgs e)
private void Timer1_Tick(object sender, EventArgs e)
{
if (!C.ClientSocket.Connected) this.Close();
}
}

private void FormShell_Load(object sender, EventArgs e)
{

}

private void Label1_Click(object sender, EventArgs e)
{
Process.Start("https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/windows-commands");
}
}
}
Loading