View Full Version : probably really easy for you guys
ACDC_Aeshion
2008-12-29, 03:16
i want a covert way to completely delete a file from a mates computer without them knowing, or needing to authorise it or anything
i know the filename, but not where its located
i figured it can probably be done with a simple command line, but im not sure how to myself
Mutant Funk Drink
2008-12-29, 06:59
You could probably burn a live cd of a linux distro (or use Damn Small Linux on a USB drive) and use the program Wipe to delete whatever files you intend on deleting.
http://wipe.sourceforge.net/
ACDC_Aeshion
2008-12-29, 10:55
sorry, i should have explained myself better
i want to be able to do it from home, ie trick him into recieving a command line application that will do it and ill just bullshit that it was meant to do something cool but didnt work
first of all you're gona have to find the file (of course).
do you know the EXACT filename? if not you will need to perform some sort of wildcard search. then if it finds it, delete it.
be really careful or could fuck up his whole pc.
personally, if your friend really is an idiot, i'd create some sort of executable n tell him to run it. create it with vb or something.
i could knock you something up i probably have done something similar already for work... whats it worth :p ?
ACDC_Aeshion
2008-12-30, 02:48
yeah my mate really is an idiot, an executable would work fine as long as it runs in the background and doesnt show him what its doing
i was thinking a command line could be written in notepad then renamed to .cmd or .bat or something, hadnt thought of vb
filename is lol.jpg, but i dont know the file path
if you can do it for me what do you want in return?
Prometheum
2008-12-30, 03:17
find / -name lol.jpg -exec rm -f {} \;
sirholkms
2008-12-30, 04:58
i want a covert way to completely delete a file from a mates computer without them knowing, or needing to authorise it or anything
i know the filename, but not where its located
i figured it can probably be done with a simple command line, but im not sure how to myself
It sounds like he has some dirt on you. I don't really think this can be done using the command line alone considering that files are just links to data and if you really want to remove the data then it needs to be overridden with some thing else.
This may help. http://www.hardwaresecrets.com/article/138
Prometheum
2008-12-30, 05:34
It sounds like he has some dirt on you. I don't really think this can be done using the command line alone considering that files are just links to data and if you really want to remove the data then it needs to be overridden with some thing else.
This may help. http://www.hardwaresecrets.com/article/138
find / -name lol.jpg -exec srm {} \;
sirholkms
2008-12-30, 05:37
find / -name lol.jpg -exec srm {} \;
Is that a Linux command?
Prometheum
2008-12-30, 06:42
Is that a Linux command?
What the fuck is a "Linux command"?
oddballz194
2008-12-30, 18:14
What the fuck is a "Linux command"?
A Linux command is one of the user-space versions of the Linux kernel, sometimes used to run programs within a "jailed" environment.
Prometheum
2008-12-30, 18:55
A Linux command is one of the user-space versions of the Linux kernel, sometimes used to run programs within a "jailed" environment.
Oh. That's interesting. How do you issue commands to it?
Anyways, that's a usage of the GNU program "find". I think it's in GNU Coreutils, but I'm not sure of that.
oddballz194
2008-12-30, 19:09
Oh. That's interesting. How do you issue commands to it?
Anyways, that's a usage of the GNU program "find". I think it's in GNU Coreutils, but I'm not sure of that.
I was referring to starting the linux-on-linux system. You can issue a command that is itself just an invocation of the kernel -- the kernel is a user-space command. You could even call that executable "linux" if you want, I would think.
It then runs an init process that starts the rest of the jailed system.
The primary difference between this and a chroot jail is that chroot doesn't virtualize the drivers. The user-mode Linux kernels do -- some versions allow you to run virtualized schedulers, memory managers and other kernel components.
You issue commands to it like any other text-mode OS -- by typing the commands into the shell.
Prometheum
2008-12-30, 19:20
I was referring to starting the linux-on-linux system. You can issue a command that is itself just an invocation of the kernel -- the kernel is a user-space command. You could even call that executable "linux" if you want, I would think.
It then runs an init process that starts the rest of the jailed system.
The primary difference between this and a chroot jail is that chroot doesn't virtualize the drivers. The user-mode Linux kernels do -- some versions allow you to run virtualized schedulers, memory managers and other kernel components.
You issue commands to it like any other text-mode OS -- by typing the commands into the shell.
But that issues commands to the shell -- how do you issue commands to the kernel? Wouldn't that be a "linux command"?
oddballz194
2008-12-30, 19:24
But that issues commands to the shell -- how do you issue commands to the kernel? Wouldn't that be a "linux command"?
I was referring to the user-mode kernel itself being a command issued to the hosting OS.
Thus, it's a command that is Linux.
Expl0itz
2008-12-30, 19:44
Inb4 GNU/L.... nevermind.
Prometheum
2008-12-30, 20:12
I was referring to the user-mode kernel itself being a command issued to the hosting OS.
Thus, it's a command that is Linux.
Ooooooh okay.
GNU/Linux. (http://gnewsense.org)
OP what prometheum's suggested looks easy solution.
i remember i have an exe i wrote in work really simple thing that finds files and deletes them. im off til next monday, if you still need it then i'll email you it modded to find that file you've said.... i'll make it delete anything called lol.* to look in all folders & remove it from the recycle bin. dont want anything in return bein the nerd i am i like daft shit like this lol
try promeo's idea 1st though, wouldnt it be better echo off so nothin shows on screen?
oddballz194
2008-12-30, 20:59
OP what prometheum's suggested looks easy solution.
i remember i have an exe i wrote in work really simple thing that finds files and deletes them. im off til next monday, if you still need it then i'll email you it modded to find that file you've said.... i'll make it delete anything called lol.* to look in all folders & remove it from the recycle bin. dont want anything in return bein the nerd i am i like daft shit like this lol
try promeo's idea 1st though, wouldnt it be better echo off so nothin shows on screen?
You're talking Windows; Prometheum is talking *nix (not just Linux-kernel based, but also BSD and SysV-based). His command won't work on Windows unless you have Cygwin installed, or a package of Unix-style tools ported to Windows.
Unix-style systems are almost always better if you want to write scripts. Batch files are a really, really wimpy toolset for that type of work.
You're talking Windows; Prometheum is talking *nix (not just Linux-kernel based, but also BSD and SysV-based). His command won't work on Windows unless you have Cygwin installed, or a package of Unix-style tools ported to Windows.
Unix-style systems are almost always better if you want to write scripts. Batch files are a really, really wimpy toolset for that type of work.
i just realised that and came back to edit my post before anyone read it & thought i was a bit 'fick... too late`lol.
hardly ever used unix but i see myself messing around with it in the pretty near future.
i agree batch files are limited, i've worked around quite a few problems with batch files just using simple vb programs.
hardly ever used unix but i see myself messing around with it in the pretty near future.
Come visit US (http://www.totse.com/community/forumdisplay.php?daysprune=&f=184) then :).
sirholkms
2008-12-31, 01:29
E-penis.
What pointless argumentation. A noob posts here asking how to delete a file on his friend's computer that he doesn't know the location of and you assume he is running a non-Windows system.
Prometheum
2008-12-31, 02:58
E-penis.
What pointless argumentation. A noob posts here asking how to delete a file on his friend's computer that he doesn't know the location of and you assume he is running a non-Windows system.
I know he's running windows. I just wanted to rub in that on GNU/Linux (http://gnewsense.org), the user has the power to do things like that in a single command. There's no limit to how much we can do with nothing more than knowledge, which stands in stark opposition to non-free systems that shackle and blind their users.
sirholkms
2008-12-31, 03:32
I know he's running windows. I just wanted to rub in that on GNU/Linux (http://gnewsense.org), the user has the power to do things like that in a single command. There's no limit to how much we can do with nothing more than knowledge, which stands in stark opposition to non-free systems that shackle and blind their users.
I'm really sorry then, I didn't know your motives.
So now that we have had the customary linux > Windows debate,
OP: Look up batch commands for search (You might need to search multiple drives, depending on his pc setup), delete, and to make the whole thing 'silent' (run in the background). Shouldn't be anything too difficult. Name the file as "lol this is cool.bat" or something that he will run. Maybe if you want, make it print some shit in a CMD window to keep him entertained and un-suspecting.
Prometheum
2008-12-31, 04:00
I'm really sorry then, I didn't know your motives.
Basically ePeen.
Come visit US (http://www.totse.com/community/forumdisplay.php?daysprune=&f=184) then :).
thx for invite! my best friend swears by ubuntu (ex windows man) i think alot of it cos he's a tight wad lol he's burned me a cd gona see what the fuss is soon.... my preconceptions of unix are of people who actually know what they're doing, command lines, integral security, and no way to reverse any cock up's you make (that bit scares me:D).
sirholkms
2008-12-31, 15:04
http://farm4.static.flickr.com/3251/2597855319_43aae5c2a9.jpg?v=0
This thread needed more cock.
http://farm4.static.flickr.com/3251/2597855319_43aae5c2a9.jpg?v=0
This thread needed more cock.
No need for gratuitous cock pics!
Just having you grace this thread provides plenty of cock, being the complete cock you are.
Happy New Year :D
sirholkms
2009-01-01, 00:53
No need for gratuitous cock pics!
Just having you grace this thread provides plenty of cock, being the complete cock you are.
Happy New Year :D
I got owned. Happy New Year.
I got owned. Happy New Year.
No, I did! (and it's pwned not owned you n00b)
Eat my shorts! :p
sirholkms
2009-01-01, 13:37
No, I did! (and it's pwned not owned you n00b)
Eat my shorts! :p
Fuck I just got pewned. I'ma go fap my cauk.
Fuck I just got pewned. I'ma go fap my cauk.
i wouldnt normally insult a man of your intelligence :D ive been pseudo-owned :D
sirholkms
2009-01-01, 13:51
i wouldnt normally insult a man of your intelligence :D ive been pseudo-owned :D
Yeah it is pretty low insulting retards :p I'm just going to go cry in the corner now-- WAWWW
i guess asking you for some hacking info is out of the question now? im soooooooorrrrryyy :(
:confused:
sirholkms
2009-01-02, 03:45
i guess asking you for some hacking info is out of the question now? im soooooooorrrrryyy :(
:confused:
When hacking down large trees it is best to use a chainsaw. Depending on how large the tree is you may have to secure it with ropes so that you can safely guide it towards a given path avoiding any potental damage the tree could cause you, or some thing else.