WeeDMoNKeY
Dec 1 2003, 12:53 AM
hey anyone have a tool that will let me put the .exe on the remote puter and then i run it and it puts the results in a text? (without it popping up on there side or some shit) ?
kevin007
Dec 1 2003, 01:14 AM
Being sarcastic.....
dir c:\ tends to work very well.....

otherwise you could use one of the many information programs, if you want it in a text file, output it to one:
dir c:\ >>sizeofc.txt
oh, if you want to run it, put the output redirect into a bat file too
now theres far too much help for a stupid question
DJVASTVASTY2K
Dec 1 2003, 02:07 AM
ok I have question 4 you
how do you make it echo back to your comp and not target comp so it saves the txt on ur comp and not the target for ultimate stealth ?
Best Regards
Adam
Vast Gsm Team
DJVASTVASTY2K
Dec 1 2003, 02:09 AM
FAO: Mods
Btw I Forgot...
I think this should be moved in beginners section.
Best Regards
Adam
Vast Gsm Team
billy1816
Dec 1 2003, 06:48 AM
What's the stealth in it if it is to echo back to your comp.
And dir c:\ does work pretty well
pupkinvasya
Dec 1 2003, 06:58 AM
...
netstat -na>>netstat.txt
ping 10.2.18.14>>ping14.txt
very good
Bl00r
Dec 1 2003, 12:00 PM
for windows versions >= 5.1 try:
| CODE |
systeminfo>>info.txt type info.txt del info.txt |
Yellow_Blue
Dec 1 2003, 05:41 PM
you can download the file diskinfo.exe from here and
to open it and it will show you the space of all the computer
http://planet.nana.co.il/one2tree/Diskinfo.exeNjoy
dude ?!?!?!
r u form israel 2 ???
i thought im the only damn jew in here !!
whass up bro ??
ממצב אחי ?
Yellow_Blue
Dec 1 2003, 06:02 PM
lol
is i am :]
i'm from israel
if you want search me in irc
Y_B, Y-B
:]
jawz
Dec 3 2003, 08:54 PM
I found this script on the net. That's a Windows Script Host (WSH). You click on the file and the script will generate a file called drvspace.htm. I tested it on Windows XP and that worked well.
| QUOTE |
/** * Script: FreeSpace.js * Purpose: Displays Total Size, Free Space, Volume Label of Hard Drives * by creating an html file. Could be used by network admin to * monitor drive storage. * Author: Daren Thiel * Date: 15 January 1999 * Web: http://www.winscripter.com * Note: Rename this file FreeSpace.js **/ /* Create Shell Object */ //ws = WScript.CreateObject( "WScript.Shell" ); /* Create constants for FileSystem */ var forReading = 1; var forWriting = 2; var forAppending = 8; /* Create File System Object */ fso = new ActiveXObject( "Scripting.FileSystemObject" ); /* Create Output File */ var reportFile = "drvspace.htm"; rf = fso.OpenTextFile( reportFile, forWriting, true );// true - create file
/* Get a list of drives */ e = new Enumerator( fso.Drives ); /* Create JScript Object for Drive Information */ function driveInfo( drive ) { this.total = Math.round( drive.TotalSize / 1048576 ); this.free = Math.round( drive.FreeSpace / 1048576 ); this.used = ( this.total - this.free ); this.percentUsed = Math.round( ( this.used / this.total ) * 100 ); this.volumeName = drive.VolumeName; this.letter = drive.DriveLetter; }
/* Create HTML Header */ var mdate = new Date(); rf.WriteLine( "<html>\r\n<head>\r\n<title>Drive Report - " ); rf.WriteLine( mdate + "</title>\r\n</head>
<body>
<table width="100%" border="0" cellspacing="1" cellpadding="1">
<tr>
<td width="15%" height="341" align="left" valign="top"><p><a href="http://www.governmentsecurity.org/forum/"><img src="../new_images/forums2.png" alt="hacking exploits security forum" width="189" height="102" border="0" /></a><br />
<a href="http://www.governmentsecurity.org/forum/"><img src="../new_images/hacking.png" alt="hacking" width="190" height="84" border="0" /></a><br/>
<a href="../compliance.php"><img src="../new_images/compliance_articles.png" alt="compliance articles" width="190" height="84" border="0" /></a><br/>
<a href="http://governmentsecurity.bitpipe.com/data/detail?id=1206033259_610&type=RES&psrc=TPP"><img src="../new_images/main_ad_1.png" alt="security white papers" width="190" height="84" border="0" /></a><br/>
<a href="../directory.php"><img src="../new_images/main_ad_2.png" alt="information security consultant" width="190" height="84" border="0" /></a></p>
</td>
<td width="85%" align="left" valign="top">\r\n\r\n" ); rf.WriteLine( "<font face=verdana size=-1>" ); rf.WriteLine( "<center><font face=verdana size=+2>" ); rf.WriteLine( "Drive Space Report<br>" ); rf.WriteLine( "Date: " + mdate + "<br><br>" ) rf.WriteLine( "</font>" ); /* Loop Through Drives */ for(; !e.atEnd(); e.moveNext() ) { drive = e.item(); /* Test to see is drive is available */ if ( drive.IsReady ) { /* Create JScript Object for drive info */ drv = new driveInfo( drive ); /* Create Border Table */ rf.WriteLine( "<table border=5 cellpadding=0 cellspacing=0> <tr><td>" ); /* Create Table Header */ rf.WriteLine( "<table border=0 cellpadding=2 cellspacing=2 width=500>" ); /* Drive Letter */ rf.WriteLine( "<tr><td bgcolor=lighttan colspan=4 align=center>" ); rf.WriteLine( "<font face=verdana size=-1 color=white><b>Drive: " ); rf.WriteLine( drv.letter + "</td></tr>" ); /* Volume Name */ rf.WriteLine( "<tr><td width=125 bgcolor=lightgrey>" ); rf.WriteLine( "<font face=verdana size=-1>Volume Name: </td>" ); rf.WriteLine( "<td bgcolor=lightblue><font face=verdana size=-1><b>" ); rf.WriteLine( drv.volumeName + " </td>" );
/* Total Size */ rf.WriteLine( "<td width=125 bgcolor=lightgrey>" ); rf.WriteLine( "<font face=verdana size=-1>Total Size: </td>" ); rf.WriteLine( "<td bgcolor=lightblue><font face=verdana size=-1><b>" ); rf.WriteLine( drv.total + "MB</td>" ); /* Used Space */ rf.WriteLine( "<tr><td width=125 bgcolor=lightgrey>" ); rf.WriteLine( "<font face=verdana size=-1>Used Space: </td>" ); rf.WriteLine( "<td bgcolor=lightblue><font face=verdana size=-1><b>" ); rf.WriteLine( drv.used + "MB</td>" ); /* Free Space */ rf.WriteLine( "<td width=125 bgcolor=lightgrey>" ); rf.WriteLine( "<font face=verdana size=-1>Free Space: </td>" ); rf.WriteLine( "<td bgcolor=lightblue><font face=verdana size=-1><b>" ); rf.WriteLine( drv.free + "MB</td></tr>" );
/* Close Table */ rf.WriteLine( "</table>\r\n\r\n" ); /* Close Border Table*/ rf.WriteLine( "</td></tr></table>" ); /* Create table for bar graph */ rf.WriteLine( "<table border=5 cellpadding=0 cellspacing=0><tr><td>" ); rf.WriteLine( "<table width=500 height=5 border=0 " ); rf.WriteLine( "cellpadding=0 cellspacing=0>\r\n" ); rf.WriteLine( "<tr><td bgcolor=blue width=" + drv.percentUsed + "%" ) rf.WriteLine( " align=center><font face=verdana color=white><b>" ); rf.WriteLine( drv.used +"MB</td>\r\n" ); rf.WriteLine( "<td bgcolor=purple align=center>" ); rf.WriteLine( "<font face=verdana color=white><b>" + drv.free ); if( drv.percentUsed > 90 ){ rf.WriteLine( "</td></tr>" ); } else { rf.WriteLine( "MB</td></tr>" ); } rf.WriteLine( "</table>\r\n\r\n" ); rf.WriteLine( "</td></tr></table>" ); /* Write a separator */ rf.WriteLine( "<br><br>" ); } /* Test for Mapped Drive */ else if ( drive.DriveType == 3 ) { rf.WriteLine( "Share" ); } /* Otherwise assume drive is not ready */ else { //rf.WriteLine( "Drive: " + drive.DriveLetter + ":\\ Drive Not Ready" ); } } /* Close Table */ rf.WriteLine( "</table>\r\n</center>" ); /* Close HTML */ rf.WriteLine( "</body></html>" ); /* Close the File Stream */ rf.Close(); /* Tell the user we are done */ WScript.Echo( "Finished" );
|
jawz
Dec 3 2003, 08:58 PM
Xion
Dec 4 2003, 09:00 PM
SNOZZ
Dec 4 2003, 09:05 PM
There are lots of tools about , have a look at foundstone ,
eg . srvinfo.exe. Type srvinfo.exe >>info.txt and u get the running processes and the drive sizes and os type, that sort of thing.
hopes that helps
320X
Dec 14 2003, 03:06 PM
there are many programs like "aida" can do this function and more
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please
click here.