Jump to content

PileOfMush

Active Members
  • Posts

    28
  • Joined

  • Last visited

Profile Information

  • Location
    Austin, TX

Recent Profile Visitors

1,423 profile views

PileOfMush's Achievements

Newbie

Newbie (1/14)

  1. So many apps check for updates every time you start them now... I wonder if anyone has ever compiled a list of the most popular of these apps to target for MITM redirection attacks. Like if Firefox were redirected to an exploit site and said "oh look, new version available"... and the exe offered wasn't called "haxploit-1337.exe" a lot of ppl would run it.
  2. Wouldn't vibrations mess with the signal? Like even just the vibration from HVAC or other equipment in a large building?
  3. U3 FireFox can import them to a flash drive and you can tote it around wherever you go.
  4. I see you figured out it was using index.html, but change your redirect to happen immediately. Waiting for a redirect is so 1997.
  5. Sounds to me like he installed Ubuntu with server setup and it's running DHCP and his PC is closer to it than to the router... so it responds faster to the request for IP. Disable DHCPd on ubuntu.
  6. I'm gonna stray from the topic further here cuz I feel like venting. My boss is what I call "technologically optimistic", meaning he thinks anything he can imagine should be possible in minutes with the right series of mouse clicks and maybe a little typing. He has an insurance quoting software installed on his computer (it's the epitome of 1995 style and grace) and he really thinks he should be able to copy it to the "internet" for everyone to use. He doesn't understand why I can't just install it on our server and let the world go to http://seriesoftubes.example.com and have it work. The list of examples is long, but I'll stop the rant here before it gets annoying.
  7. Not to sound like an ad or anything, but SpinRite is some magic shit with problems like this.
  8. Don't hurt yourself, but nice quick fix to your problem. :D
  9. The pretty vector graphics and connected entities mean jack to a computer without several layers of languages converting it all into binary. Every layer has it's purpose. Graphical interfaces to data are the top level macro end of the spectrum.
  10. I fixed two missing spaces. I was trying to format the code to look pretty and probably broke it. (FILE *fp=NULL; LPVOID pBuf=NULL;) haha To sc0rpi0: I'm not sure if I made it clear enough before... when you run this, you don't have to push print screen... it does it automatically and saves out a bitmap file. In fact, if you wanted an all-in-one tool to save the contents of clipboard to a file, THEN grab a screenshot, you can insert some code to grab from the clipboard right before it does the key-down/key-up events on the Printscreen button. I just wish I had a compiler available so I could fix it up and build it.
  11. Give gPartEd a try. I think in short everyone is saying "use anything but Windows to repartition & format it". http://gparted.sourceforge.net/
  12. #include <iostream.h> #include <windows.h> #include <stdio.h> int main() { TakeScreenShot("c:\\Screenshot.bmp"); return 0; } void TakeScreenShot(char* filename) { keybd_event(VK_SNAPSHOT, 0x45, KEYEVENTF_EXTENDEDKEY, 0); keybd_event(VK_SNAPSHOT, 0x45, KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, 0); HBITMAP h; OpenClipboard(NULL); h = (HBITMAP)GetClipboardData(CF_BITMAP); CloseClipboard(); HDC hdc=NULL; FILE *fp=NULL; LPVOID pBuf=NULL; BITMAPINFO bmpInfo; BITMAPFILEHEADER bmpFileHeader; do { hdc=GetDC(NULL); ZeroMemory(&bmpInfo,sizeof(BITMAPINFO)); bmpInfo.bmiHeader.biSize=sizeof(BITMAPINFOHEADER); GetDIBits(hdc,h,0,0,NULL,&bmpInfo,DIB_RGB_COLORS); if(bmpInfo.bmiHeader.biSizeImage<=0) bmpInfo.bmiHeader.biSizeImage=bmpInfo.bmiHeader.biWidth*abs(bmpInfo.bmiHeader.bi Height)*(bmpInfo.bmiHeader.biBitCount+7)/8; if((pBuf = malloc(bmpInfo.bmiHeader.biSizeImage))==NULL) { MessageBox( NULL, "Unable to Allocate Bitmap Memory", "Error", MB_OK|MB_ICONERROR); break; } bmpInfo.bmiHeader.biCompression=BI_RGB; GetDIBits(hdc,h,0,bmpInfo.bmiHeader.biHeight,pBuf, &bmpInfo, DIB_RGB_COLORS); if((fp = fopen(filename,"wb"))==NULL) { MessageBox( NULL, "Unable to Create Bitmap File", "Error", MB_OK|MB_ICONERROR); break; } bmpFileHeader.bfReserved1=0; bmpFileHeader.bfReserved2=0; bmpFileHeader.bfSize=sizeof(BITMAPFILEHEADER)+sizeof(BITMAPINFOHEADER)+bmpInfo.b miHeader.biSizeImage; bmpFileHeader.bfType='MB'; bmpFileHeader.bfOffBits=sizeof(BITMAPFILEHEADER)+sizeof(BITMAPINFOHEADER); fwrite(&bmpFileHeader,sizeof(BITMAPFILEHEADER),1,fp); fwrite(&bmpInfo.bmiHeader,sizeof(BITMAPINFOHEADER),1,fp); fwrite(pBuf,bmpInfo.bmiHeader.biSizeImage,1,fp); } while(false); if(hdc) ReleaseDC(NULL,hdc); if(pBuf) free(pBuf); if(fp) fclose(fp); } This is ripped from somewhere. Things that need fixing: remove MessageBox error output and change the filename so it's more of a datetime thing than hardcoded. Since you asked about it earlier, I'll point out that this contains an example of copying data from the clipboard. Actually, if it's not obvious how this thing works, it presses the printscreen key and then snags the clipboard data to a bitmap. I don't have VC++ or I'd try to fix it and compile it. Good luck.
  13. I understand why he got confused... after installing XP, he was booting to Vista still when he should have been booting to XP. He got kinda derailed, but it's OK... he's done the repair to Vista anyway (tho apparently it wasn't needed in his case)... now he just needs to run the last step... Easy BCD. http://neosmart.net/dl.php?id=1
  14. gee... wonder what he's up to
×
×
  • Create New...