Comments for VostDev https://vostdev.wordpress.com CyberSec | DIY Sat, 23 Jan 2021 20:21:31 +0000 hourly 1 http://wordpress.com/ Comment on HTB – Legacy Walk-through by HTB – Lame Walk-through – VostDev https://vostdev.wordpress.com/2021/01/17/htb-legacy-walk-through/#comment-147
Mon, 18 Jan 2021 21:24:21 +0000 http://vostdev.wordpress.com/?p=614#comment-147 […] does not support any more python2. So if you need to install any dependencies check out the Legacy post. Now we do the proper changes in the script and we change the LHOST, RHOST and optionally the […] ]]>
Comment on How to change your Device Id in Android by Stylianos Voukatas https://vostdev.wordpress.com/2011/05/01/how-to-change-your-device-id-in-android/#comment-7
Tue, 23 Aug 2011 11:13:47 +0000 http://vostdev.com/?p=132#comment-7 For anything you want to do with your android device you should have installed the Android SDK. If you only need to change your device id you should open a terminal/command prompt and enter this:

adb shell
su
sqlite3 data/data/com.android.providers.settings/databases/settings.db
update secure set value=0000 where name=’android_id’;

The Activity and the Layout code is the code of an Android application that reads your device id. If you don’t understand this then probably you are not an Android developer but you don’t need to understand or use any of this code..Use the lines I wrote above.;)

]]>
Comment on How to change your Device Id in Android by josh https://vostdev.wordpress.com/2011/05/01/how-to-change-your-device-id-in-android/#comment-6 Mon, 15 Aug 2011 05:14:45 +0000 http://vostdev.com/?p=132#comment-6 how and where do i import the activity code and the layout code? please help me out. thanks. ]]> Comment on Backup with WinRar/Batch Files and Task Scheduler in Windows by Stylianos Voukatas https://vostdev.wordpress.com/2011/04/20/backup-with-winrarbatch-files-and-task-scheduler-in-windows/#comment-5 Thu, 26 May 2011 17:32:35 +0000 http://vostdev.com/?p=108#comment-5 In reply to the same person.

I am not an expert but you can use this somewhere in your batch file:

FORFILES /P “%USERPROFILE%Desktoptest” /D -1 /M *.rar /C “cmd /c del @path”

The above line will erase all the .rar files that are older than a day and are located inside the test folder. The @path gives the full path and name of the file.Be cautious with the del command…Hope it helps!

]]>
Comment on Backup with WinRar/Batch Files and Task Scheduler in Windows by the same person https://vostdev.wordpress.com/2011/04/20/backup-with-winrarbatch-files-and-task-scheduler-in-windows/#comment-4 Thu, 26 May 2011 16:49:31 +0000 http://vostdev.com/?p=108#comment-4 hey man, it doesn’t matter, your code works perfectly I don’t need your help now. Thanks for your post! ]]> Comment on Backup with WinRar/Batch Files and Task Scheduler in Windows by vago https://vostdev.wordpress.com/2011/04/20/backup-with-winrarbatch-files-and-task-scheduler-in-windows/#comment-3 Thu, 26 May 2011 15:55:27 +0000 http://vostdev.com/?p=108#comment-3 dude I made a mistake, your code works perfectly. But you didn’t say how to delete the older file. ]]> Comment on Backup with WinRar/Batch Files and Task Scheduler in Windows by vago https://vostdev.wordpress.com/2011/04/20/backup-with-winrarbatch-files-and-task-scheduler-in-windows/#comment-2 Thu, 26 May 2011 15:18:26 +0000 http://vostdev.com/?p=108#comment-2 Hey buddy, the example is great but What should I do if i want to compress only a file and not taking all of them (inside of the folder). I’m confused, could you help please i’m breaking my head with this … ]]>