Insurgency Mod Scum: cheaters, hackers, wallhackers, aimbotters, griefers, teamkillers, micspammers, spawncampers, exitcampers, and everything else Insurgency.
Blogger.com policy on personal information: Personal and confidential information: It's not ok to publish another person's personal and confidential information. For example, don't post someone else's credit card numbers, Social Security numbers, unlisted phone numbers, and driver's license numbers. Also, please keep in mind that in most cases, information that is already available elsewhere on the Internet or in public records is not considered to be private or confidential under our policies.
All information posted on Insurgency Mod Scum is publicly available.
Showing posts with label OT-PROTIP. Show all posts
Showing posts with label OT-PROTIP. Show all posts

[PROTIP] "UnGit" Portable Git GUI for Windows

2015-07-04

1 comments
Portable Git GUI clients for Windows:

GitEye (Eclipse based), piece of shit.
SourceTree, not portable.
SmartGit (Java based), OK, but command line had to be used to unfuck SmartGit a few times.
https://github.com/alberthier/git-webui Too complicated, not portable.

UnGit is a browser based (programmed in JavaScript) GUI for Git.

UnGit
https://github.com/FredrikNoren/ungit

Instructions:

Download "Windows Binary" "Node.js"
https://nodejs.org/download/

Download latest "npm"
http://nodejs.org/dist/npm/

Via command line:
npm install -g ungit
ungit

Then just open your browser to http://localhost:8448

This really is portable. Node.js leaves some shit in AppData folder, but you can probably delete it.

Source:
https://github.com/joyent/node/issues/3978

Frankly speaking, that ZIP (from the http://imsky.co/notes/nodejs-portable-windows-version-15 page you've given as an example) seems somewhat unnecessary complex for a portable version of Node.
Look, if you need just a portable Node.js engine, you could simply grab http://nodejs.org/dist/latest/node.exe and save it somewhere and run it whenever you want a JavaScript file executed: \path\to\saved\node.exe scriptname.js. It's that simple, and I cannot imagine a portable version simpler than a single executable file. (See the “Installing without building” section in the “Installation” article of the Node's wiki for more details, if you need them.)

Of course, if you are not happy until the necessary command is as simple as node scriptname.js, then you have to alter the PATH variable on your system accordingly (i.e. add Node's path to that variable); and if you also need npm, you have to download npm's latest ZIP from http://nodejs.org/dist/npm/ and unpack it to the same subdirectory where your Node is.

All of the above are relatively simple operations, they do not require any installers, everything can be easily done manually, and all the necessary files (Node's EXE file and npm's ZIP) are already provided officially.

Contrary to the popular belief, you won't need to alter your system's registry or create the NODE_PATH variable at all.

When you need to update your portable Node engine, just download the latest http://nodejs.org/dist/latest/node.exe and replace your former node.exe.

When you need to update your portable npm, use the npm update npm -g command.

[PROTIP][NOTED] Deleting All Previous Commits in Git

1 comments
Source:
http://stackoverflow.com/questions/9683279/make-the-current-commit-the-only-initial-commit-in-a-git-repository

git checkout --orphan newBranch
git add -A  # Add all files and commit them
git commit
git branch -D master  # Deletes the master branch
git branch -m master  # Rename the current branch to master

[PROTIP][NOTED] Record Multiple Screen Areas at the Same Time (Open Broadcater Software and ShareX)

1 comments
Update: Both ShareX and OBS are not able to stop and resume recording :(.

You want to video record two things on your screen at the same time. Use multiple instances of Open Broadcaster Software or ShareX (both are open source).

RunOBS.bat
start /b %CD%\OBS.exe -portable -multi

RunShareX.bat
start /b %CD%\sharex.exe -multi -portable

BTW, do not use XSplit, it looks like a scam.

[PROTIP] Ban, Block, Kill, Nuke Google Search's Annoying Nag via uBlock (Chromium, Chrome)

2015-06-28

0 comments
The "brogrammers" and "brosigners" at Google has been annoying INSMODSCUM with this shit for weeks. Google can't keep "SEO"  spammers from their search results, but are experts at pop ups.

Please see this: http://insurgencymod.blogspot.com/2015/06/rant-chromium-chrome-pop-up-exploit.html



uBlock rule:

www.google.com###gbw > div > .gb_pa.gb_Zc.gb_r.gb_0c.gb_e > .gb_r.gb_0c.gb_ba > .gb_ia.gb_tb.gb_ub.gb_ea > .gb_ha

ALSO SEE:
http://insurgencymod.blogspot.com/2015/03/rant-brogrammers-and-brosigners-dumbing.html

[RANT][PROTIP] uBlock Origin vs uBlock

1 comments

TLDR: use uBlock Origin

If you gonna fork something, pick a new fucking name. This whole renaming shit only causes confusion.

If you need to make a decision which Chrome ad blocking extensions to use compare the two programmers:

Raymond Hill AKA "gorhill", "uBlock Origin", original uBlock
https://github.com/gorhill?tab=repositories

Chris Aljoudi, new uBlock
https://github.com/chrisaljoudi?tab=repositories

Clearly gorhill has more applicable programming experience compared to Chris (who doesn't even have a cool name :) )

Bonus: Aljoudi's website (https://chrismatic.io/) has the hipster-brogrammer-brosigner feel. Gorhill's website (http://www.raymondhill.net/) doesn't even work (at least on my computer). A broken website is better than a working hipster-brogrammer-brosigner website IMHO.

https://twitter.com/gorhill
One tweet, because real men don't tweet.

Also see:
http://insurgencymod.blogspot.com/2015/04/protip-what-happed-to-ublock-aka.html

[NOTED][PROTIP] Start & Stop Windows 7 Services As Administrator via Batch File

2015-06-27

0 comments
Source:
Enable Disable Built In Administrator Acount
https://technet.microsoft.com/en-us/library/dd744293(v=ws.10).aspx

net user administrator /active:yes

Control Panel -> Users
Create password for Administrator.

EverythingServiceStart.bat
runas /user:administrator /savecred "cmd /c net start Everything & timeout 3" 
start /b %cd%\everything\everything.exe

EverythingServiceStop.bat
::runas.exe /user:administrator /savecred "cmd /c net stop Everything & timeout 3"
::runas.exe /user:administrator /savecred "cmd /c taskkill /f /im everything.exe & timeout 3"
runas.exe /user:administrator /savecred "cmd /c net stop Everything & timeout 3 & taskkill /f /im everything.exe & timeout 3"


When using cmd.exe, you can put multiple commands on the same line by using ‘&’ or ‘&&’ between commands. Using a single ampersand (&) will cause the first command and then the second command to be run in sequence. Using double ampersands (&&) introduces error checking. The second command will run only if the first command is successful.

[NOTED] Cmder Tips

2015-06-21

0 comments
*
"Cmdr Here" Right Mouse Click:

cmder.exe /REGISTER ALL

*
"Cmder" Button in Total Commander
Total Commander: "Cmdr Here" via Cmdr Button Bar Button:

In Total Commander "Change Button Bar":

Paramaters: %p%

Source (what a shitty writer BTW): http://www.kodermac.com/cmder-in-totalcommander/

ALSO SEE:
http://insurgencymod.blogspot.de/2015/06/protip-fix-lambda-command-prompt-in.html
http://insurgencymod.blogspot.de/2015/06/protipnoted-kill-windows-10-advert-spam.html
http://insurgencymod.blogspot.de/2015/05/tools-portable-windows-console-conemu.html

[PROTIP][NOTED][BUG] "Chromium requires Windows... or later. This PC is running Windows..."

0 comments
Source:
http://portableapps.com/node/15570

Fix:

%USERPROFILE%\AppData\Local\Temp

Folder Properties->Security->Edit->"Everyone"->"Allow" "Full Control"

[PROTIP] [NOTED] Hosts List Blacklists

0 comments
2015.07.05

OK

"MVPS"
http://winhelp2002.mvps.org/hosts.txt

"Peter Lowe"
http://pgl.yoyo.org/as/serverlist.php?hostformat=hosts&showintro=1&mimetype=plaintext

"hpHosts"
http://hosts-file.net/ad_servers.txt

"Malware Domain List"
http://www.malwaredomainlist.com/hostslist/hosts.txt

"Cameleon"
http://sysctl.org/cameleon/hosts.win

"Dan Pollock"
http://someonewhocares.org/hosts/hosts

DO NOT USE

"hpHosts"
http://hosts-file.net/download/hosts.txt

[PROTIP] [NOTED] DD WRT WPA2 Maximum Key Length

2015-06-15

0 comments
Regarding DD WRT v24-sp2 08.12.10 firmware:

Maximum WPA2 AES key length is 63 characters, if you enter anymore you will ratfuck your router and will have to reset it.

Source:
http://www.dd-wrt.com/phpBB2/viewtopic.php?p=650688

Checking size of WPA2 Shared Key
Post new topic   Reply to topic   DD-WRT Forum Forum Index -> Broadcom SoC based Hardware
View previous topic :: View next topic  
Author Message
electrickery
DD-WRT Novice


Joined: 17 Jun 2006
Posts: 1

PostPosted: Sun Nov 27, 2011 16:44    Post subject: Checking size of WPA2 Shared Key Reply with quote
Recently I found that there is no check for the maximum size of the WPA2 Shared Key (Wireless > Wireless Security). This is 63 characters. You can insert more characters and Save/Apply Changes, with the result that no connection is possible, even if both sides have the same oversized Shared Key. No warning is given.


Firmware: DD-WRT v24-sp2 (07/21/09)

[NOTED][PROTIP] Adobe Audition Bloat & Cracking Adobe Audition CS6

2015-06-14

0 comments
Adobe Audition Bloat
CS6 - 536 MB
CC 2014 - 879 MB
CC 2015 - 962 MB
ALSO SEE:
http://insurgencymod.blogspot.com/2015/06/linksnoted-adobe-direct-downloads.html
http://insurgencymod.blogspot.com/2013/01/photoshop-cs6-extended-1301-spam-free.html

Kill internet.
Install trial.
Copy amtlib.dll to c:\Program Files (x86)\Adobe\Adobe Audition CS6\

  File: amtlibCHINGLIU.dll
CRC-32: 87e15554
   MD4: c06f093357b9a672814dc2ee23d443b7
   MD5: 40ebab1ddc6fcf18b3528cb0445de61e
 SHA-1: 895fdd4c0f706d3cb87d8470372cb318063c337b

  File: amtlibVIRUS.dll
CRC-32: 8f0ffe86
   MD4: c22b2dca7fac1904bd429e3cfb4fdef0
   MD5: 381078a5ea3c9c0be046d382c92233c1
 SHA-1: c1aeece29be4ccbabfb3e39eacfa4983c0f8358c

MD5 and SHA256 hashes:
amtlib.dll c:\Program Files (x86)\Adobe\Adobe Audition CS6\ 40ebab1ddc6fcf18b3528cb0445de61e 476cea7a17b867a5ade5482b7a6fa13e46b8dcea8e950086a1925fa8b748209b
amtlib.dll c:\Program Files (x86)\Adobe\Adobe Bridge CS6\ 5fff55476202151cca4ec1bd2250e729 12f4b00610fb4254e70763454961ab7b59e6460d81396284ed9f0d2c4bcce594
amtlib.dll c:\Program Files (x86)\Adobe\Adobe Photoshop CS6\ 5fff55476202151cca4ec1bd2250e729 12f4b00610fb4254e70763454961ab7b59e6460d81396284ed9f0d2c4bcce594
amtlib.dll c:\Program Files\Adobe\Adobe Bridge CS6 (64 Bit)\ 5be936987259ad1ef42fb51024308fc1 9be7470ec58e079d86b72f23a92e4785276fe50df49e607e3046e6be7a8daf22
amtlib.dll c:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\ 5be936987259ad1ef42fb51024308fc1 9be7470ec58e079d86b72f23a92e4785276fe50df49e607e3046e6be7a8daf22

[PROTIP] Fix "Lambda" Command Prompt in Cmder

1 comments
Cmder with unfucked command prompt.

cmder\vendor\init.bat

:: Change the prompt style
:: IMS 2015.06.16
:: https://kb.iu.edu/d/aamm
:: https://msdn.microsoft.com/en-us/library/cc722862.aspx
:: original:@prompt $E[1;32;40m$P$S{git}$S$_$E[1;30;40m{lamb}$S$E[0m
:: $e[x;xx;xx0m is the color, $d date $t time $p path $$ dollar sign
:: with date and time @prompt $e[1;33;40m $d $e[1;34;40m $t $e[1;32;40m $p $$
@prompt $e[1;32;40m$p$e[1;31;40m$$

[PROTIP] Total Commander: Show Line Numbers in Lister via TotalHLT (Total Highlight) Lister Plugin

1 comments
Show line numbers in Total Commander Lister.

Ingredients:

wlx_TotalHLT_1.7b160.zip

Recipe:

Install TotalHLT.

In:

TC\PLUGINS\wlx\TotalHLT\langDefs\

Create

txt.lang

# IMS 2015.06.14
# txt.lang

$TAG_DELIM(kwa)=

$STRINGDELIMITERS=

$SL_COMMENT=

$SYMBOLS=

Fix theme in:

highlight_wlx.xml

<Theme>ide-eclipse.style</Theme>
   

[PROTIP][NOTED] Kill Windows 10 Advert Spam & Shit Tasks in Task Scheduler

2015-06-06

0 comments
Source: http://www.comtek4u.com/content/2015/04/16/how-to-remove-windows-10-upgrade-updates-windows-7-and-8

STEP A: Uninstalling

In "Cmder" (http://insurgencymod.blogspot.com/2015/05/tools-portable-windows-console-conemu.html):

powershell
get-hotfix -id KB3035583, KB2952664,KB2976978,KB3021917,KB3044374,KB2990214
exit
[I had the following 4 "updates":]
wusa /uninstall /kb:2952664
wusa /uninstall /kb:2990214
wusa /uninstall /kb:3021917
wusa /uninstall /kb:3035583

STEP B: Hiding

"Control Panel\All Control Panel Items\Windows Update\Select updates to install"
"Hide Update"

Hiding Malicious Windows 7 "Updates"

STEP 3: Disabling

Source: http://tech.slashdot.org/comments.pl?sid=7502429&cid=49836637

Go to Task Scheduler.

In the scheduler library: \Microsoft\Windows\Setup\gwx

Disable everything.

I also disable these tasks in scheduler library:

\Microsoft\Windows\Customer Experience Improvement Program:

Disable task: Consolidator
Disable task: KernelCeipTask
Disable task: UsbCeip

\Microsoft\Windows\Application Experience:

Disable task: AitAgent
Disable task: Microsoft Compatibility Appraiser
Disable task: ProgramDataUpdater


Disabling "gwx" shit
Disabling "Customer Experience Improvement Program" spyware
Disabling "Application Experience" spyware

Also see:
http://insurgencymod.blogspot.com/2012/03/default-windows-7-services-reference.html
http://insurgencymod.blogspot.com/2012/02/pro-tip-minimal-windows-7-x64-services.html
http://insurgencymod.blogspot.com/2012/02/pro-tip-minimal-windows-xp-x32-services.html

[PROTIP][NOTED] SPAMFREE INSMODSCUM Android Apps

0 comments
https://androidobservatory.org/

===

Adblock Plus
BeyondPod
List My Apps
Mind Games Pro
NESoid
Seesmic
SkyMap

1Weather
com.handmark.expressweather-1.apk

Android Units
info.staticfree.android.units-1.apk

Document Viewer
org.sufficientlysecure.viewer-2.apk

Droid Sniff
com.evozi.droidsniff-1.apk

Lesser Pad
org.pulpdust.lesserpad-1.apk

Moon Reader Pro
com.flyersoft.moonreaderp-1.apk

Open KeyChain
org.sufficientlysecure.keychain-1.apk

Periodic Table
frozendevs.periodictable

SpeedTest.net
org.zwanoo.android.speedtest-1.apk

True Random Generator
com.blogspot.truerandomgenerator.password-1.apk

===

Texas Instruments (TI) Simulators

Andie Graph
net.supware.tipro-1.apk

Graph 89
com.Bisha.TI89EmuDonation-1.apk

===

Widgets

Battery Widget
org.droidparts.battery_widget-1.apk

Brightness Widget
priv.twoerner.brightnesswidget-1.apk

Reboot Widget
com.schreinerDev.rebootwidget-1.apk

Volume Control Widget
ca.xvx.volume-1.apk

WiFi Toggle Widget
com.schreiner.wifistatus-1.apk

Internal Phone Storage Widget
com.g3.android.widgets.internalm-1.apk
SD Card Storage Widget
com.g3.android.widgets.sdcardm-1.apk

###

BlackJack Simulators

Advantage BlackJack
darkwoodlabs.advbj

No longer available on Google Play?
BlackJack Trainer
com.jmaz.blackjack-1.apk

BlackJack Strategy Table
com.montecarlo.blackjack.table-1.apk

BlackJack Trainer
eu.domob.bjtrainer-1.apk

BlackJack Trainer & Sim
org.example.blackjack-1.apk

###

Also see:
http://insurgencymod.blogspot.nl/2015/05/protip-noted-android-open-source.html
http://insurgencymod.blogspot.nl/2015/05/noted-minimalist-aka-barebones.html
http://insurgencymod.blogspot.nl/2015/05/protip-noted-minimalist-aka-barebones.html

[PROTIP] [NOTED] 100% Portable Chromium with Adobe (NPSWF) and Pepper Flash (pepflashplayer)

2015-05-31

0 comments
Your Chromium 42 Portable should look like this.
This recipe is not for noobs.

Ingredients:

ChromiumPortable_42.0.2298.0.paf.exe
http://crportable.sourceforge.net/

Flash Plugins, both Adobe and Pepper

Flash_PPAPI_Portable_17.0.0.188_32-64_Plugin.exe
Flash_NPAPI_Portable_17.0.0.188_32-64_Plugin.exe
http://portableapptrash.blogspot.com/2015/04/flash-plugins.html or http://portablewares.blogspot.com/2015/05/adobe-and-pepper-flash-browser-plugin.html

NOTE: there's two flash plugins. The good old Adobe (uses NPAPI) and the newer "Pepper" (uses PPAI), made by Google.

(Pepper Flash)

Copy

pepflashplayer32.dll
pepflashplayer64.dll

to ChromiumPortable directory.

Create

chromium32.bat
start ChromiumPortable.exe --ppapi-flash-path="%CD%\pepflashplayer32.dll" --ppapi-flash-version="99.0.0.0"
exit

chromium62.bat
start ChromiumPortable.exe --ppapi-flash-path="%CD%\pepflashplayer64.dll" --ppapi-flash-version="99.0.0.0"
exit

(Adobe Flash)

Copy

NPSWF32.dll

to ChromiumPortable\Data\PLUGINS directory.

In Chromium go to

chrome://flags/

Check

"Enable NPAPI"

Check everything is OK:

chrome://flash/
chrome://plugins/ (you can disable "AdobeAAMDetect" and "Chromoting Viewer")

Hide ads:

ChromiumPortable.ini
DisableSplashScreen=TRUE

If you are using 64 bit Windows use chromium64.bat and if you are using 32 bit Windows use chromium32.bat.

Also see:
http://insurgencymod.blogspot.com/2015/05/rant-google-chrome-portable-is-not.html
http://insurgencymod.blogspot.it/2015/05/rant-google-deleted-my-gmail-address.html
http://insurgencymod.blogspot.it/2015/05/protip-do-not-update-to-chrome-42.html
and
http://insurgencymod.blogspot.com/2013/03/pro-tip-flash-player-for-iron-portable.html

[PROTIP] [NOTED] Minimalist AKA Barebones Cyanogenmod CM11 "M12" (Android 4.4 "KitKat")

2015-05-30

0 comments
UPDATE: WARNING: This disables encrypted wireless on my tablet. Unencrypted (public) access points work OK.

Use "Total Commander" to rename "App.apk" to "App.apk.bak". This is by far the easiest yet best method. Avoid "ES File Explorer" which is shit.

/system/app

Apollo.apk.bak
BasicDreams.apk.bak
Bluetooth.apk.bak
BluetoothExt.apk.bak
Browser.apk.bak
CMBugReport.apk
CMFileManager.apk.bak
CMHome.apk
CMWallpapers.apk
Calculator.apk.bak
Calendar.apk
Camera2.apk.bak
CertInstaller.apk
DSPManager.apk.bak
DeskClock.apk.bak
Development.apk
DocumentsUI.apk
DownloadProviderUi.apk.bak
Email.apk.bak
Exchange2.apk.bak
FaceLock.apk.bak
Galaxy4.apk.bak
Gallery2.apk.bak
GenieWidget.apk.bak
Gmail2.apk.bak
GoogleCalendarSyncAdapter.apk
GoogleContactsSyncAdapter.apk
GoogleEars.apk.bak
GoogleTTS.apk.bak
HTMLViewer.apk.bak
Hangouts.apk.bak
HoloSpiralWallpaper.apk.bak
KeyChain.apk
LatinIME.apk
LiveWallpapers.apk.bak
LiveWallpapersPicker.apk.bak
LockClock.apk.bak
MagicSmokeWallpapers.apk.bak
MediaUploader.apk
NoiseField.apk
PacProcessor.apk
PackageInstaller.apk
PhaseBeam.apk.bak
PhotoPhase.apk.bak
PhotoTable.apk.bak
PrintSpooler.apk.bak
SoundRecorder.apk.bak
TelephonyProvider.apk
Term.apk
UserDictionaryProvider.apk
VideoEditor.apk.bak
VisualizationWallpapers.apk.bak
VoicePlus.apk.bak
WAPPushManager.apk

/system/priv-app

NOTE: "Trebuchet" is Cyanogenmod's launcher, so make sure you are using another launcher (see: http://insurgencymod.blogspot.com/2015/05/protip-noted-android-open-source.html) before renaming it.

BackupRestoreConfirmation.apk
CMAccount.apk
CMUpdater.apk
CalendarProvider.apk.bak
ConfigUpdater.apk
Contacts.apk.bak
ContactsProvider.apk.bak
DefaultContainerService.apk
DownloadProvider.apk
ExternalStorageProvider.apk
FusedLocation.apk
GmsCore.apk
GoogleBackupTransport.apk
GoogleFeedback.apk
GoogleLoginService.apk
GoogleOneTimeInitializer.apk
GooglePartnerSetup.apk
GoogleServicesFramework.apk
InputDevices.apk
Keyguard.apk
MediaProvider.apk
OneTimeInitializer.apk
Phonesky.apk
PicoTts.apk
ProxyHandler.apk
Settings.apk
SettingsProvider.apk
SetupWizard.apk
SharedStorageBackup.apk
Shell.apk
SystemUI.apk
TeleService.apk
ThemeChooser.apk.bak
ThemesProvider.apk.bak
Trebuchet.apk.bak
Velvet.apk.bak
VpnDialogs.apk
WallpaperCropper.apk
talkback.apk

To get the list of your apps (like above) open up the "Terminal":

su
ls /data/app >/sdcard/dataapp.txt
ls /system/app >/sdcard/systemapp.txt
ls /system/priv-app >/sdcard/systempprivapp.txt

More PRO TIPS:

You may also want to search and delete "bootanimation" files, you don't need them.

Enable "Developer Optons" (http://wiki.cyanogenmod.org/w/Doc:_developer_options):

In the Settings app, select About Phone (or About Tablet).
Scroll down, and tap the Build number entry seven times. On the seventh tap, you will be notified that "You are now a developer."

Disable annoying animations:

In "Developer Options" set "... animation scale" and "... duration scale" to "0.0x"

Also see:
http://insurgencymod.blogspot.com/2015/05/protip-noted-android-open-source.html
http://insurgencymod.blogspot.com/2015/05/noted-minimalist-aka-barebones.html
and
http://wiki.cyanogenmod.org/w/Barebones
http://wiki.cyanogenmod.org/w/Google_Apps

[PROTIP] DO NOT UPDATE TO Chrome 42 (Google Nerfed Bookmarks)

2015-05-24

0 comments
Brogrammers at Google fucked up Chrome once again. This time they fucked with the bookmarks and managed to make them more cumbersome and slower to use. Nice "flowy" "user experience" AKA needless animation, straight from the Jonny Ives Playbook.

INSMODSCUM learned the hard way to always backup Chrome Portable before testing the new version.

Also see: