Jump to content

Recommended Posts

Posted

Hello!

I wanted to find out from you if you could send me the code ready, or at least tell me how to do that program who checks how much data is collected and sent over the Internet.

Posted (edited)

That's a good idea, gonna check that.

EDIT: check "_Net_Share_StatisticsGetWrk"

I Think this can provide what we need.

Edited by careca
Spoiler

Renamer - Rename files and folders, remove portions of text from the filename etc.

GPO Tool - Export/Import Group policy settings.

MirrorDir - Synchronize/Backup/Mirror Folders

BeatsPlayer - Music player.

Params Tool - Right click an exe to see it's parameters or execute them.

String Trigger - Triggers pasting text or applications or internet links on specific strings.

Inconspicuous - Hide files in plain sight, not fully encrypted.

Regedit Control - Registry browsing history, quickly jump into any saved key.

Time4Shutdown - Write the time for shutdown in minutes.

Power Profiles Tool - Set a profile as active, delete, duplicate, export and import.

Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes.

NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s.

IUIAutomation - Topic with framework and examples

Au3Record.exe

Posted (edited)

This is what i got so far, but it doesn't work...

#include <NetShare.au3>
#include <Constants.au3>
#include <GuiListView.au3>
#include <GUIConstantsEx.au3>
Opt("TrayMenuMode", 1)
Opt("TrayIconHide", 0)
Opt("GUIResizeMode", 1)
Opt("TrayIconDebug", 1)
Opt("TrayAutoPause", 0)
Opt("MouseCoordMode", 2)
Opt("GUIOnEventMode", 1)
Opt("MustDeclareVars", 1)
Opt("GUIEventOptions", 1)
Opt("TrayOnEventMode", 1)
Opt("ExpandEnvStrings", 1)
Opt("WinDetectHiddenText", 1)

;Gui
Local $GUI, $cListView
;Tray
Local $PLTray, $PSTray, $STTray, $NTray, $PTray, $CTTray, $ExitItem
;Vars
Local $Ver, $WinState, $sWorkStation

TraySetIcon("ico.ico")
$Ver = ("")
$GUI = GUICreate($Ver, 400, 400, 100, 100)
$cListView = GUICtrlCreateListView("text|text|text", 10, 10, 285, 260)

TraySetOnEvent($TRAY_EVENT_PRIMARYDOUBLE, "Window")
$ExitItem = TrayCreateItem("Close")
TrayItemSetOnEvent(-1, "Quit")
Local $iIndex = 0
GUISetState()
TraySetState(1)
TraySetClick(8)

;=============================================================================

Do
Sleep(250)
$sWorkStation = _Net_Share_StatisticsGetWrk(@ComputerName)
If @error Then
ToolTip('error')
Else
ToolTip($sWorkStation[1] & ' ' & $sWorkStation[7])
GUICtrlCreateListViewItem($sWorkStation[1] & '|' & $sWorkStation[7] & '|' & '|', $cListView)
_GUICtrlListView_SetItemSelected($cListView, $iIndex, True, True)
$iIndex = $iIndex + 1
EndIf
Until GUIGetMsg() = $GUI_EVENT_CLOSE

;=============================================================================
Edited by careca
Spoiler

Renamer - Rename files and folders, remove portions of text from the filename etc.

GPO Tool - Export/Import Group policy settings.

MirrorDir - Synchronize/Backup/Mirror Folders

BeatsPlayer - Music player.

Params Tool - Right click an exe to see it's parameters or execute them.

String Trigger - Triggers pasting text or applications or internet links on specific strings.

Inconspicuous - Hide files in plain sight, not fully encrypted.

Regedit Control - Registry browsing history, quickly jump into any saved key.

Time4Shutdown - Write the time for shutdown in minutes.

Power Profiles Tool - Set a profile as active, delete, duplicate, export and import.

Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes.

NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s.

IUIAutomation - Topic with framework and examples

Au3Record.exe

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...