public inbox for elfutils@sourceware.org
 help / color / mirror / Atom feed
* [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174
@ 2018-10-17 12:01 wcventure at 126 dot com
  2018-10-17 12:02 ` [Bug libelf/23787] " wcventure at 126 dot com
                   ` (41 more replies)
  0 siblings, 42 replies; 43+ messages in thread
From: wcventure at 126 dot com @ 2018-10-17 12:01 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

            Bug ID: 23787
           Summary: Invalid Address Deference problem in function elf_end
                    in libelf the latest elfutils-0.174
           Product: elfutils
           Version: unspecified
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: libelf
          Assignee: unassigned at sourceware dot org
          Reporter: wcventure at 126 dot com
                CC: elfutils-devel at sourceware dot org
  Target Milestone: ---

Created attachment 11338
  --> https://sourceware.org/bugzilla/attachment.cgi?id=11338&action=edit
POC1

Hi,

Our fuzzer found an Invalid Address Deference problem in function elf_end in
libelf the latest elfutils-0.174 code base. I have confirmed them with Address
Sanitizer, too.

The function elf_end is called by size.c. Here are the POC files. Please use "
./eu-size $POC " to reproduce this bug. 

The ASAN dumps the stack trace as follows:
ASAN:DEADLYSIGNAL
=================================================================
==21938==ERROR: AddressSanitizer: SEGV on unknown address 0x000000000010 (pc
0x7f1a0efb3cd6 bp 0x7ffd04b5dc40 sp 0x7ffd04b5db50 T0)
==21938==The signal is caused by a READ memory access.
==21938==Hint: address points to the zero page.
    #0 0x7f1a0efb3cd5 in elf_end (/usr/lib/x86_64-linux-gnu/libelf.so.1+0x4cd5)
    #1 0x405aa2 in handle_ar
/media/hjwang/01D3344861A8D2E0/wcventure/Project/elfutils/src/size.c:373
    #2 0x401c7a in process_file
/media/hjwang/01D3344861A8D2E0/wcventure/Project/elfutils/src/size.c:294
    #3 0x401c7a in main
/media/hjwang/01D3344861A8D2E0/wcventure/Project/elfutils/src/size.c:186
    #4 0x7f1a0ec0582f in __libc_start_main
(/lib/x86_64-linux-gnu/libc.so.6+0x2082f)
    #5 0x4029f8 in _start
(/media/hjwang/01D3344861A8D2E0/wcventure/Project/elfutils/build/bin/eu-size+0x4029f8)

AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV (/usr/lib/x86_64-linux-gnu/libelf.so.1+0x4cd5)
in elf_end
==21938==ABORTING
Aborted

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug libelf/23787] Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
@ 2018-10-17 12:02 ` wcventure at 126 dot com
  2018-10-18 23:05 ` [Bug libelf/23787] eu-size: Bad handling of ar files inside are files mark at klomp dot org
                   ` (40 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: wcventure at 126 dot com @ 2018-10-17 12:02 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

--- Comment #1 from wcventure <wcventure at 126 dot com> ---
Created attachment 11339
  --> https://sourceware.org/bugzilla/attachment.cgi?id=11339&action=edit
POC2

Please use " ./eu-size $POC " to reproduce this bug. 

This bug was discovered by NTU Cyber-Security-Lab, for fuzzing research work.
If you have any questions, please let me know.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug libelf/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
  2018-10-17 12:02 ` [Bug libelf/23787] " wcventure at 126 dot com
@ 2018-10-18 23:05 ` mark at klomp dot org
  2018-10-19 22:59 ` mark at klomp dot org
                   ` (39 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: mark at klomp dot org @ 2018-10-18 23:05 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

Mark Wielaard <mark at klomp dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2018-10-18
                 CC|                            |mark at klomp dot org
            Summary|Invalid Address Deference   |eu-size: Bad handling of ar
                   |problem in function elf_end |files inside are files
                   |in libelf the latest        |
                   |elfutils-0.174              |
     Ever confirmed|0                           |1

--- Comment #2 from Mark Wielaard <mark at klomp dot org> ---
Thanks. What is happening is that eu-size can handle ar files inside ar files,
but when doing so it closes the (outer) ar file before handling all other
entries in it.

Proposed patch: https://sourceware.org/ml/elfutils-devel/2018-q4/msg00057.html

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug libelf/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
  2018-10-17 12:02 ` [Bug libelf/23787] " wcventure at 126 dot com
  2018-10-18 23:05 ` [Bug libelf/23787] eu-size: Bad handling of ar files inside are files mark at klomp dot org
@ 2018-10-19 22:59 ` mark at klomp dot org
  2018-11-14 11:46 ` mark at klomp dot org
                   ` (38 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: mark at klomp dot org @ 2018-10-19 22:59 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

Mark Wielaard <mark at klomp dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #3 from Mark Wielaard <mark at klomp dot org> ---
commit 22d2d082d57a7470fadc0eae67179553f4919209
Author: Mark Wielaard <mark@klomp.org>
Date:   Thu Oct 18 23:15:48 2018 +0200

    size: Handle recursive ELF ar files.

    eu-size didn't handle an ELF ar file that contained an ar file itself
    correctly. handle_ar would recursively call itself but close the ELF
    file before returning. Only close the ELF file at the top-level.

    https://sourceware.org/bugzilla/show_bug.cgi?id=23787

    Signed-off-by: Mark Wielaard <mark@klomp.org>

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug libelf/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (2 preceding siblings ...)
  2018-10-19 22:59 ` mark at klomp dot org
@ 2018-11-14 11:46 ` mark at klomp dot org
  2018-11-14 11:54 ` [Bug tools/23787] " mark at klomp dot org
                   ` (37 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: mark at klomp dot org @ 2018-11-14 11:46 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

--- Comment #4 from Mark Wielaard <mark at klomp dot org> ---
For reference this was assigned CVE-2018-18520.

Note that the description of the CVE is misleading.
The bug is in eu-size, not in libelf elf_end.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (3 preceding siblings ...)
  2018-11-14 11:46 ` mark at klomp dot org
@ 2018-11-14 11:54 ` mark at klomp dot org
  2019-07-23  4:16 ` omarandemad at gmail dot com
                   ` (36 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: mark at klomp dot org @ 2018-11-14 11:54 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

Mark Wielaard <mark at klomp dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|libelf                      |tools

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (4 preceding siblings ...)
  2018-11-14 11:54 ` [Bug tools/23787] " mark at klomp dot org
@ 2019-07-23  4:16 ` omarandemad at gmail dot com
  2019-11-26  2:20 ` bloonstowerdefense5.io at gmail dot com
                   ` (35 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: omarandemad at gmail dot com @ 2019-07-23  4:16 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

zain david <omarandemad at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |omarandemad at gmail dot com

--- Comment #5 from zain david <omarandemad at gmail dot com> ---
such a wonderful post.
http://www.winmilliongame.com
http://www.gtagame100.com
http://www.subway-game.com
http://www.zumagame100.com

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (5 preceding siblings ...)
  2019-07-23  4:16 ` omarandemad at gmail dot com
@ 2019-11-26  2:20 ` bloonstowerdefense5.io at gmail dot com
  2019-11-26  2:20 ` bloonstowerdefense5.io at gmail dot com
                   ` (34 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: bloonstowerdefense5.io at gmail dot com @ 2019-11-26  2:20 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

--- Comment #7 from My Grandy <bloonstowerdefense5.io at gmail dot com> ---
Thanks for all the tips mentioned in this article! it's always good to read
things you have heard before and are implementing, but from a different
perspective, always pick up some extra bits of information.
https://bubble-shooter.co

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (6 preceding siblings ...)
  2019-11-26  2:20 ` bloonstowerdefense5.io at gmail dot com
@ 2019-11-26  2:20 ` bloonstowerdefense5.io at gmail dot com
  2020-01-21 11:43 ` johnkaitlyn95 at gmail dot com
                   ` (33 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: bloonstowerdefense5.io at gmail dot com @ 2019-11-26  2:20 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

My Grandy <bloonstowerdefense5.io at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bloonstowerdefense5.io@gmai
                   |                            |l.com

--- Comment #6 from My Grandy <bloonstowerdefense5.io at gmail dot com> ---
Thanks for all the tips mentioned in this article! it's always good to read
things you have heard before and are implementing, but from a different
perspective, always pick up some extra bits of information.
https://bubble-shooter.co

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (7 preceding siblings ...)
  2019-11-26  2:20 ` bloonstowerdefense5.io at gmail dot com
@ 2020-01-21 11:43 ` johnkaitlyn95 at gmail dot com
  2020-02-12 12:45 ` ardzimba30 at gmail dot com
                   ` (32 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: johnkaitlyn95 at gmail dot com @ 2020-01-21 11:43 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

Kaitlyn John <johnkaitlyn95 at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |johnkaitlyn95 at gmail dot com

--- Comment #8 from Kaitlyn John <johnkaitlyn95 at gmail dot com> ---
While searching for the solution for bad handling of ar files inside files I
came across this page. Here they have shared the solution for the issue. I am
not that sure how effective it will be but still going to try it out.
http://www.cbdplantfood.com/cbd/cbd-food-guide/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (8 preceding siblings ...)
  2020-01-21 11:43 ` johnkaitlyn95 at gmail dot com
@ 2020-02-12 12:45 ` ardzimba30 at gmail dot com
  2020-02-19  8:35 ` apizoid at gmail dot com
                   ` (31 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: ardzimba30 at gmail dot com @ 2020-02-12 12:45 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

daki <ardzimba30 at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ardzimba30 at gmail dot com

--- Comment #9 from daki <ardzimba30 at gmail dot com> ---
https://tech4blog.com/bully-anniversary-edition-apk/>

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (9 preceding siblings ...)
  2020-02-12 12:45 ` ardzimba30 at gmail dot com
@ 2020-02-19  8:35 ` apizoid at gmail dot com
  2020-02-22 10:53 ` damnedboy92 at gmail dot com
                   ` (30 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: apizoid at gmail dot com @ 2020-02-19  8:35 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

Apizoid <apizoid at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |apizoid at gmail dot com

--- Comment #10 from Apizoid <apizoid at gmail dot com> ---
While searching for the solution for bad handling of ar files inside files I
came across this page. Here they have shared the solution for the issue. I am
not that sure how effective it will be but still going to try it
out.https://apizoid.com

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (10 preceding siblings ...)
  2020-02-19  8:35 ` apizoid at gmail dot com
@ 2020-02-22 10:53 ` damnedboy92 at gmail dot com
  2020-03-10 12:36 ` fansocialfan at gmail dot com
                   ` (29 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: damnedboy92 at gmail dot com @ 2020-02-22 10:53 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

Bartan Muhman <damnedboy92 at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |damnedboy92 at gmail dot com

--- Comment #11 from Bartan Muhman <damnedboy92 at gmail dot com> ---
Finally I have found this bug. I will use it on https://apknature.com

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (11 preceding siblings ...)
  2020-02-22 10:53 ` damnedboy92 at gmail dot com
@ 2020-03-10 12:36 ` fansocialfan at gmail dot com
  2020-03-12  9:43 ` damnedboy92 at gmail dot com
                   ` (28 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: fansocialfan at gmail dot com @ 2020-03-10 12:36 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

Princezz <fansocialfan at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |fansocialfan at gmail dot com

--- Comment #12 from Princezz <fansocialfan at gmail dot com> ---
You can see how i described this problem -
https://www.gadget-rumours.com/gta-grand-theft-auto-san-andreas-mod-unlimited-money/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (12 preceding siblings ...)
  2020-03-10 12:36 ` fansocialfan at gmail dot com
@ 2020-03-12  9:43 ` damnedboy92 at gmail dot com
  2020-03-16 15:23 ` damnedboy92 at gmail dot com
                   ` (27 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: damnedboy92 at gmail dot com @ 2020-03-12  9:43 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

--- Comment #13 from Bartan Muhman <damnedboy92 at gmail dot com> ---
Note that the description of the CVE is misleading.
https://www.roostdirectory.com/games/the-best-video-games-of-all-time/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (13 preceding siblings ...)
  2020-03-12  9:43 ` damnedboy92 at gmail dot com
@ 2020-03-16 15:23 ` damnedboy92 at gmail dot com
  2020-03-28  5:17 ` rajputveer8055 at gmail dot com
                   ` (26 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: damnedboy92 at gmail dot com @ 2020-03-16 15:23 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

--- Comment #14 from Bartan Muhman <damnedboy92 at gmail dot com> ---
Here they have shared the solution for the issue. I am not that sure how
effective it will be it worked fine on one of my favorite android games! Here
is a link to it -
https://appmirror.net/games/action/grand-theft-auto-vice-city-apk-10-39317/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (14 preceding siblings ...)
  2020-03-16 15:23 ` damnedboy92 at gmail dot com
@ 2020-03-28  5:17 ` rajputveer8055 at gmail dot com
  2020-03-28  5:25 ` rajputveer8055 at gmail dot com
                   ` (25 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: rajputveer8055 at gmail dot com @ 2020-03-28  5:17 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

viren <rajputveer8055 at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |rajputveer8055 at gmail dot com

--- Comment #15 from viren <rajputveer8055 at gmail dot com> ---
For reference this was assigned CVE-2018-18520.

Note that the description of the CVE is misleading.
The bug is in eu-size, not in libelf elf_end.
https://gadgetsmagnet.com

https://technorazor.com

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (15 preceding siblings ...)
  2020-03-28  5:17 ` rajputveer8055 at gmail dot com
@ 2020-03-28  5:25 ` rajputveer8055 at gmail dot com
  2020-04-01 13:07 ` andrewlincon49 at gmail dot com
                   ` (24 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: rajputveer8055 at gmail dot com @ 2020-03-28  5:25 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

--- Comment #16 from viren <rajputveer8055 at gmail dot com> ---
POC2

Please use " ./eu-size $POC " to reproduce this bug. 

This bug was discovered by NTU Cyber-Security-Lab, for fuzzing research work.
If you have any questions, please let me know.

https://technorazor.com/best-anime-website/
https://technorazor.com/free-sports-streaming-sites/
https://technorazor.com/youtube-multi-downloader/
https://technorazor.com/9xmovies/
https://technorazor.com/fmovies-watch-movies-online/
https://technorazor.com/watch-cartoons-online/
https://technorazor.com/gogoanime/
https://technorazor.com/putlocker-alternative/
https://technorazor.com/tamilrockers/
https://technorazor.com/9xmovies/
https://technorazor.com/fmovies-watch-movies-online/
https://technorazor.com/animefreak/
https://technorazor.com/123movies-online/
https://technorazor.com/kissanime-alternatives/
https://technorazor.com/9anime-alternatives/
https://technorazor.com/couchtuner-alternative/
https://technorazor.com/movierulz/
https://technorazor.com/mp4mania/
https://technorazor.com/jalshamoviez-hd-movies/
https://technorazor.com/cinemavilla-2019-download-tamil-telugu-kannadamovies-online-free/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (16 preceding siblings ...)
  2020-03-28  5:25 ` rajputveer8055 at gmail dot com
@ 2020-04-01 13:07 ` andrewlincon49 at gmail dot com
  2020-04-01 13:09 ` ptestpage32 at gmail dot com
                   ` (23 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: andrewlincon49 at gmail dot com @ 2020-04-01 13:07 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

--- Comment #17 from andrew <andrewlincon49 at gmail dot com> ---
If you want to login to the Linksys router you can login with
https://mywifiextnets.net/linksys-default-password/ and setup your router.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (17 preceding siblings ...)
  2020-04-01 13:07 ` andrewlincon49 at gmail dot com
@ 2020-04-01 13:09 ` ptestpage32 at gmail dot com
  2020-04-06 18:11 ` xiloci6226 at gotkmail dot com
                   ` (22 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: ptestpage32 at gmail dot com @ 2020-04-01 13:09 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

--- Comment #18 from Steven Smith <ptestpage32 at gmail dot com> ---
If you want to login to the Linksys router you can login with
https://mywifiextnets.net/linksys-default-password/ and setup your router.(In
reply to Mark Wielaard from comment #4)
> For reference this was assigned CVE-2018-18520.
> 
> Note that the description of the CVE is misleading.
> The bug is in eu-size, not in libelf elf_end.

If you want to login to the Linksys router you can login with
https://mywifiextnets.net/linksys-default-password/ and setup your router.(In
reply to wcventure from comment #0)
> Created attachment 11338 [details]
> POC1
> 
> Hi,
> 
> Our fuzzer found an Invalid Address Deference problem in function elf_end in
> libelf the latest elfutils-0.174 code base. I have confirmed them with
> Address Sanitizer, too.
> 
> The function elf_end is called by size.c. Here are the POC files. Please use
> " ./eu-size $POC " to reproduce this bug. 
> 
> The ASAN dumps the stack trace as follows:
> ASAN:DEADLYSIGNAL
> =================================================================
> ==21938==ERROR: AddressSanitizer: SEGV on unknown address 0x000000000010 (pc
> 0x7f1a0efb3cd6 bp 0x7ffd04b5dc40 sp 0x7ffd04b5db50 T0)
> ==21938==The signal is caused by a READ memory access.
> ==21938==Hint: address points to the zero page.
>     #0 0x7f1a0efb3cd5 in elf_end
> (/usr/lib/x86_64-linux-gnu/libelf.so.1+0x4cd5)
>     #1 0x405aa2 in handle_ar
> /media/hjwang/01D3344861A8D2E0/wcventure/Project/elfutils/src/size.c:373
>     #2 0x401c7a in process_file
> /media/hjwang/01D3344861A8D2E0/wcventure/Project/elfutils/src/size.c:294
>     #3 0x401c7a in main
> /media/hjwang/01D3344861A8D2E0/wcventure/Project/elfutils/src/size.c:186
>     #4 0x7f1a0ec0582f in __libc_start_main
> (/lib/x86_64-linux-gnu/libc.so.6+0x2082f)
>     #5 0x4029f8 in _start
> (/media/hjwang/01D3344861A8D2E0/wcventure/Project/elfutils/build/bin/eu-
> size+0x4029f8)
> 
> AddressSanitizer can not provide additional info.
> SUMMARY: AddressSanitizer: SEGV
> (/usr/lib/x86_64-linux-gnu/libelf.so.1+0x4cd5) in elf_end
> ==21938==ABORTING
> Aborted
https://printertestpage.co/ is the site which is available 24hrs. For
troubleshoot your printer.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (18 preceding siblings ...)
  2020-04-01 13:09 ` ptestpage32 at gmail dot com
@ 2020-04-06 18:11 ` xiloci6226 at gotkmail dot com
  2020-04-06 20:24 ` bubbleshort321 at gmail dot com
                   ` (21 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: xiloci6226 at gotkmail dot com @ 2020-04-06 18:11 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

Lakudra <xiloci6226 at gotkmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |xiloci6226 at gotkmail dot com

--- Comment #19 from Lakudra <xiloci6226 at gotkmail dot com> ---
Erotic entertainment use, inclination for https://www.sexcams.club/ ,
masturbation, and sexual and relationship fulfillment were surveyed among two
examples of men.

Visit https://www.xvideos.tube/ entertainment use was related with sexual
disappointment, more noteworthy inclination for pornlike sex, and increasingly
visit masturbation in the two investigations. 

Sex entertainment use was related with relationship disappointment in
https://www.xnxx.top/ it were. The information didnt bolster the thought that
sex entertainment contrarily impacts sexual or relationship fulfillment.

By means of inclination for https://www.xhamster.llc/ , truth be told, it might
support sexual fulfillment by advancing sexual assortment. 

The information were steady with a model in which https://www.chaturbates.net/
entertainment adversely, in a roundabout way influences sexual and relationship
fulfillment by means of masturbation recurrence. 

Investigating erotic https://www.shemalecamspro.com/ effect on sentimental
connections is a moderately ongoing improvement in sex entertainment look into
writing.
It is contended that presentation to the messages contained inside
https://www.sexcams.club/cam/hotfallingdevil/ erotic entertainment makes an
inclination for the sorts of sexual practices.

They drives https://www.sexcams.club/cam/littlesubgirl/ pornography clients to
feel explicitly disappointed when their inclinations are not met by their
sexual accomplices. 

Another chance is that it cant to the messages contained inside
https://www.sexcams.club/cam/naughtyelle/ erotic entertainment however visit
masturbation, which results from visit sex entertainment use.

That undermines shoppers sentiments of https://www.sexcams.club/cam/siswet19/
sexual fulfillment by contrarily affecting sexual execution, arousability, or
sentiments of sexual enthusiasm toward ones accomplice. 

To begin with, it intends to duplicate and broaden existing examination by
evaluating the level of relationship between
https://www.sexcams.club/cam/anabel054/ entertainment use and sexual
fulfillment.

Various connection considers have been led looking at the relationship between
https://www.sexcams.club/cam/migurtt/ entertainment use and relationship and
sexual fulfillment.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (19 preceding siblings ...)
  2020-04-06 18:11 ` xiloci6226 at gotkmail dot com
@ 2020-04-06 20:24 ` bubbleshort321 at gmail dot com
  2020-04-06 20:26 ` bubbleshort321 at gmail dot com
                   ` (20 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: bubbleshort321 at gmail dot com @ 2020-04-06 20:24 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

bubbleshort1 <bubbleshort321 at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bubbleshort321 at gmail dot com

--- Comment #20 from bubbleshort1 <bubbleshort321 at gmail dot com> ---
Thanks for sharing the solutions for this bug issue. Read more about <a
href="https://bubble-shooter.me/">bubbleshooter</a> to get information.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (20 preceding siblings ...)
  2020-04-06 20:24 ` bubbleshort321 at gmail dot com
@ 2020-04-06 20:26 ` bubbleshort321 at gmail dot com
  2020-04-15  7:17 ` luciham20 at gmail dot com
                   ` (19 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: bubbleshort321 at gmail dot com @ 2020-04-06 20:26 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

--- Comment #21 from bubbleshort1 <bubbleshort321 at gmail dot com> ---
Thanks for sharing the solutions for this bug issue. Read more about <a
href="https://bubble-shooter.me/">bubbleshooter</a> to get information.(In
reply to Lakudra from comment #19)
> Erotic entertainment use, inclination for https://www.sexcams.club/ ,
> masturbation, and sexual and relationship fulfillment were surveyed among
> two examples of men.
> 
> Visit https://www.xvideos.tube/ entertainment use was related with sexual
> disappointment, more noteworthy inclination for pornlike sex, and
> increasingly visit masturbation in the two investigations. 
> 
> Sex entertainment use was related with relationship disappointment in
> https://www.xnxx.top/ it were. The information didnt bolster the thought
> that sex entertainment contrarily impacts sexual or relationship fulfillment.
> 
> By means of inclination for https://www.xhamster.llc/ , truth be told, it
> might support sexual fulfillment by advancing sexual assortment. 
> 
> The information were steady with a model in which
> https://www.chaturbates.net/ entertainment adversely, in a roundabout way
> influences sexual and relationship fulfillment by means of masturbation
> recurrence. 
> 
> Investigating erotic https://www.shemalecamspro.com/ effect on sentimental
> connections is a moderately ongoing improvement in sex entertainment look
> into writing.
> It is contended that presentation to the messages contained inside
> https://www.sexcams.club/cam/hotfallingdevil/ erotic entertainment makes an
> inclination for the sorts of sexual practices.
> 
> They drives https://www.sexcams.club/cam/littlesubgirl/ pornography clients
> to feel explicitly disappointed when their inclinations are not met by their
> sexual accomplices. 
> 
> Another chance is that it cant to the messages contained inside
> https://www.sexcams.club/cam/naughtyelle/ erotic entertainment however visit
> masturbation, which results from visit sex entertainment use.
> 
> That undermines shoppers sentiments of
> https://www.sexcams.club/cam/siswet19/ sexual fulfillment by contrarily
> affecting sexual execution, arousability, or sentiments of sexual enthusiasm
> toward ones accomplice. 
> 
> To begin with, it intends to duplicate and broaden existing examination by
> evaluating the level of relationship between
> https://www.sexcams.club/cam/anabel054/ entertainment use and sexual
> fulfillment.
> 
> Various connection considers have been led looking at the relationship
> between https://www.sexcams.club/cam/migurtt/ entertainment use and
> relationship and sexual fulfillment.

Bubble Shooter is the most popular and casual game worldwide. To play the game
for completely free, visit our website https://bubble-shooter.me/.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (21 preceding siblings ...)
  2020-04-06 20:26 ` bubbleshort321 at gmail dot com
@ 2020-04-15  7:17 ` luciham20 at gmail dot com
  2020-04-17 22:45 ` ijaffery7 at gmail dot com
                   ` (18 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: luciham20 at gmail dot com @ 2020-04-15  7:17 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

Lucille F. Parham <luciham20 at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |luciham20 at gmail dot com

--- Comment #22 from Lucille F. Parham <luciham20 at gmail dot com> ---
It is just excellent to know this information.
https://chrome.google.com/webstore/detail/subwaysurfers-game/ipdjjecjipdfmjcjopddoldigfolkeje

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (22 preceding siblings ...)
  2020-04-15  7:17 ` luciham20 at gmail dot com
@ 2020-04-17 22:45 ` ijaffery7 at gmail dot com
  2020-04-19 17:57 ` ardzimba32 at gmail dot com
                   ` (17 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: ijaffery7 at gmail dot com @ 2020-04-17 22:45 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

Martinking <ijaffery7 at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ijaffery7 at gmail dot com

--- Comment #23 from Martinking <ijaffery7 at gmail dot com> ---
What If I tell you that I have written brief about these files.
https://besticious.com/best-laptops-for-nursing-students/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (23 preceding siblings ...)
  2020-04-17 22:45 ` ijaffery7 at gmail dot com
@ 2020-04-19 17:57 ` ardzimba32 at gmail dot com
  2020-04-22 11:30 ` backgroundsound901 at gmail dot com
                   ` (16 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: ardzimba32 at gmail dot com @ 2020-04-19 17:57 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

iutek <ardzimba32 at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ardzimba32 at gmail dot com

--- Comment #24 from iutek <ardzimba32 at gmail dot com> ---
https://telegra.ph/How-to-Hack-Clash-of-Clans-12-29

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (24 preceding siblings ...)
  2020-04-19 17:57 ` ardzimba32 at gmail dot com
@ 2020-04-22 11:30 ` backgroundsound901 at gmail dot com
  2020-04-28  4:31 ` claire at shoesformen dot com
                   ` (15 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: backgroundsound901 at gmail dot com @ 2020-04-22 11:30 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

GBWhatsApp <backgroundsound901 at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |backgroundsound901 at gmail dot co
                   |                            |m

--- Comment #25 from GBWhatsApp <backgroundsound901 at gmail dot com> ---
Hello folks, today we're demonstrating that how you can send stickers on
GBWhatsapp. Additionally, you may acquainted with the sticker highlight of
whatsapp previously. These stickers are so famous among How To Send Stickers on
How To Send Stickers on GBWhatsApp clients and individuals love to utilize
these stickers while discussions
https://modapkplus.com/how-to-send-stickers-on-gbwhatsapp/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (25 preceding siblings ...)
  2020-04-22 11:30 ` backgroundsound901 at gmail dot com
@ 2020-04-28  4:31 ` claire at shoesformen dot com
  2020-04-28  4:32 ` claire at shoesformen dot com
                   ` (14 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: claire at shoesformen dot com @ 2020-04-28  4:31 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

claire <claire at shoesformen dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |claire at shoesformen dot com

--- Comment #26 from claire <claire at shoesformen dot com> ---
Shoesformen.com is a professional E-commerce platform focused on men shoes,we
sale the most Cost-effective and various styles for men shoes,we sale quality
men dress shoes mostly and you can find the best men shoes for you.
<a href="https://www.shoesformen.com">Shoes For Men</a> the website which focus
on men's fashion and give the best price of shoes.Men's fashion,our passion.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (26 preceding siblings ...)
  2020-04-28  4:31 ` claire at shoesformen dot com
@ 2020-04-28  4:32 ` claire at shoesformen dot com
  2020-05-11  8:00 ` simpsonjoshua329 at gmail dot com
                   ` (13 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: claire at shoesformen dot com @ 2020-04-28  4:32 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

--- Comment #27 from claire <claire at shoesformen dot com> ---
Shoesformen.com is a professional E-commerce platform focused on men shoes,we
sale the most Cost-effective and various styles for men shoes,we sale quality
men dress shoes mostly and you can find the best men shoes for you.
[url=https://www.shoesformen.com]Shoes For Men[/url] the website which focus on
men's fashion and give the best price of shoes.Men's fashion,our passion.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (27 preceding siblings ...)
  2020-04-28  4:32 ` claire at shoesformen dot com
@ 2020-05-11  8:00 ` simpsonjoshua329 at gmail dot com
  2020-06-06  9:57 ` shockfilm.in at gmail dot com
                   ` (12 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: simpsonjoshua329 at gmail dot com @ 2020-05-11  8:00 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

simpson joshua <simpsonjoshua329 at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |simpsonjoshua329 at gmail dot com

--- Comment #28 from simpson joshua <simpsonjoshua329 at gmail dot com> ---
A fairly large amount of information from the article. A good website needs
many elements, please refer to my article. https://bubble-shooterbest.co

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (28 preceding siblings ...)
  2020-05-11  8:00 ` simpsonjoshua329 at gmail dot com
@ 2020-06-06  9:57 ` shockfilm.in at gmail dot com
  2020-08-09  2:10 ` info at saturdaysale dot com
                   ` (11 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: shockfilm.in at gmail dot com @ 2020-06-06  9:57 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

Vahid <shockfilm.in at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |shockfilm.in at gmail dot com

--- Comment #29 from Vahid <shockfilm.in at gmail dot com> ---
i think is very best.

http://moshaveranetehran2.blog.ir/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (29 preceding siblings ...)
  2020-06-06  9:57 ` shockfilm.in at gmail dot com
@ 2020-08-09  2:10 ` info at saturdaysale dot com
  2020-08-12  2:01 ` tranhung22102019 at gmail dot com
                   ` (10 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: info at saturdaysale dot com @ 2020-08-09  2:10 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

Sat <info at saturdaysale dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |info at saturdaysale dot com

--- Comment #30 from Sat <info at saturdaysale dot com> ---
https://saturdaysale.com/proven-review/
https://saturdaysale.com/biotox-gold-review/
https://saturdaysale.com/critical-bench-review/
https://saturdaysale.com/how-to-lose-weight-without-starving-yourself/
https://saturdaysale.com/leptoconnect-review/
https://saturdaysale.com/the-smoothie-diet/
https://saturdaysale.com/diabetes-freedom-review/
https://saturdaysale.com/hyperbolic-stretching/
https://saturdaysale.com/fat-flusher-diet-supplements/
https://saturdaysale.com/resurge-review/
https://saturdaysale.com/speechelo-review/
https://saturdaysale.com/leptitox-review/
https://saturdaysale.com/sonus-complete-review/
https://saturdaysale.com/bioptimizers-review/
https://saturdaysale.com/21-day-flat-belly-fix-reviews/
https://saturdaysale.com/cinderella-solution/
https://saturdaysale.com/sqribble-review/
https://saturdaysale.com/glucoflow-review/
https://saturdaysale.com/organifi-green-juice/
https://saturdaysale.com/skintight-review/
https://saturdaysale.com/immune-booster/
https://saturdaysale.com/vitalflow/
https://saturdaysale.com/knee-pain-relief/
https://saturdaysale.com/14-day-rapid-soup-diet/
https://saturdaysale.com/dizziness-and-vertigo-program/
https://saturdaysale.com/gutamin7-review/
https://saturdaysale.com/carbofix-review/
https://saturdaysale.com/sharpear-review
https://saturdaysale.com/steel-bite-pro/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (30 preceding siblings ...)
  2020-08-09  2:10 ` info at saturdaysale dot com
@ 2020-08-12  2:01 ` tranhung22102019 at gmail dot com
  2020-08-25 10:05 ` pinoytvtambayanhd at gmail dot com
                   ` (9 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: tranhung22102019 at gmail dot com @ 2020-08-12  2:01 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

John Collin <tranhung22102019 at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |tranhung22102019 at gmail dot com

--- Comment #31 from John Collin <tranhung22102019 at gmail dot com> ---
I wanted to thank you for this excellent read!! I definitely loved every little
bit of it. I have you bookmarked your site to check out the new stuff you post.


LeptoConnect @ https://healthfit247.com/leptoconnect-review/
Resurge @ https://healthfit247.com/resurge-review/
Leptitox @ https://healthfit247.com/leptitox-review/
Health Fit 247 Official Website @ https://healthfit247.com/
His Secret Obsession @ https://healthfit247.com/his-secret-obsession-review/
Diabetes Freedom @ https://healthfit247.com/diabetes-freedom-reviews/
Sonus Complete @ https://healthfit247.com/sonus-complete-reviews/
Gutamin 7 @ https://healthfit247.com/gutamin-7-review/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (31 preceding siblings ...)
  2020-08-12  2:01 ` tranhung22102019 at gmail dot com
@ 2020-08-25 10:05 ` pinoytvtambayanhd at gmail dot com
  2020-09-08  6:09 ` support at youwin dot org.ng
                   ` (8 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: pinoytvtambayanhd at gmail dot com @ 2020-08-25 10:05 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

PinoyTVTambayan <pinoytvtambayanhd at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pinoytvtambayanhd at gmail dot com

--- Comment #32 from PinoyTVTambayan <pinoytvtambayanhd at gmail dot com> ---
Watch Pinoy TV, Pinoy Tambayan, Pinoy Lambingan, Pinoy Teleserye Replay, Pinoy
Tv shows, Pinoy Channel Replay.
https://pinoytvtambayanhd.su/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (32 preceding siblings ...)
  2020-08-25 10:05 ` pinoytvtambayanhd at gmail dot com
@ 2020-09-08  6:09 ` support at youwin dot org.ng
  2020-09-20  1:00 ` gpcannabisclub at gmail dot com
                   ` (7 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: support at youwin dot org.ng @ 2020-09-08  6:09 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

Ikechukwu ike <support at youwin dot org.ng> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |support at youwin dot org.ng

--- Comment #33 from Ikechukwu ike <support at youwin dot org.ng> ---
https://techdownloadforpc.com/westinghouse-smart-landscape-app-pc-windows-7810-mac-free-download/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (33 preceding siblings ...)
  2020-09-08  6:09 ` support at youwin dot org.ng
@ 2020-09-20  1:00 ` gpcannabisclub at gmail dot com
  2020-09-28  8:14 ` shahidanwar8359 at gmail dot com
                   ` (6 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: gpcannabisclub at gmail dot com @ 2020-09-20  1:00 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

Ibra <gpcannabisclub at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |gpcannabisclub at gmail dot com

--- Comment #34 from Ibra <gpcannabisclub at gmail dot com> ---
Assigned to CVE-2018-18520. Check that


https://greenplanet-cannabisclub.com/en/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (34 preceding siblings ...)
  2020-09-20  1:00 ` gpcannabisclub at gmail dot com
@ 2020-09-28  8:14 ` shahidanwar8359 at gmail dot com
  2020-09-28  8:17 ` shahidanwar8359 at gmail dot com
                   ` (5 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: shahidanwar8359 at gmail dot com @ 2020-09-28  8:14 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

shahid anwar <shahidanwar8359 at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |shahidanwar8359 at gmail dot com

--- Comment #35 from shahid anwar <shahidanwar8359 at gmail dot com> ---
thank you for posting this it is really nice i hope that will see more in
future. https://www.mierepair.ae/services/home-appliances-repair-dubai.html

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (35 preceding siblings ...)
  2020-09-28  8:14 ` shahidanwar8359 at gmail dot com
@ 2020-09-28  8:17 ` shahidanwar8359 at gmail dot com
  2020-09-28  8:22 ` zarakhan8359 at gmail dot com
                   ` (4 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: shahidanwar8359 at gmail dot com @ 2020-09-28  8:17 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

--- Comment #36 from shahid anwar <shahidanwar8359 at gmail dot com> ---
i found your website over the web, actually my friend suggest about this so i
am here. https://www.a2zappliancerepairs.ae/refrigerator-repair.php

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (36 preceding siblings ...)
  2020-09-28  8:17 ` shahidanwar8359 at gmail dot com
@ 2020-09-28  8:22 ` zarakhan8359 at gmail dot com
  2020-10-08 20:48 ` poonamsinghdnt at gmail dot com
                   ` (3 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: zarakhan8359 at gmail dot com @ 2020-09-28  8:22 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

zara khan <zarakhan8359 at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |zarakhan8359 at gmail dot com

--- Comment #37 from zara khan <zarakhan8359 at gmail dot com> ---
i'm very happy that i'm here at your website you maintain your website really
nicely, no bugs no errors everything is good.
https://tvrepairdubai.com/philips-tv-repair-dubai/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (37 preceding siblings ...)
  2020-09-28  8:22 ` zarakhan8359 at gmail dot com
@ 2020-10-08 20:48 ` poonamsinghdnt at gmail dot com
  2020-10-26  6:54 ` vanessarose786 at gmail dot com
                   ` (2 subsequent siblings)
  41 siblings, 0 replies; 43+ messages in thread
From: poonamsinghdnt at gmail dot com @ 2020-10-08 20:48 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

Poonam Singh <poonamsinghdnt at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |poonamsinghdnt at gmail dot com

--- Comment #38 from Poonam Singh <poonamsinghdnt at gmail dot com> ---
I am Ankita Agarwal Independent Call Girls in Mumbai. I am always available to
provide more good escort service to you guys. Mumbai Escorts invites you and
wants to offer you a lot where we will experience something new together.
http://www.escortserviceinmumbai.org
http://www.escortserviceinmumbai.org/indore-escorts
http://www.escortserviceinmumbai.org/ludhiana-escorts

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (38 preceding siblings ...)
  2020-10-08 20:48 ` poonamsinghdnt at gmail dot com
@ 2020-10-26  6:54 ` vanessarose786 at gmail dot com
  2020-12-02  5:45 ` jackdie3438 at gmail dot com
  2020-12-02 10:10 ` mark at klomp dot org
  41 siblings, 0 replies; 43+ messages in thread
From: vanessarose786 at gmail dot com @ 2020-10-26  6:54 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

vanessa786 <vanessarose786 at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |vanessarose786 at gmail dot com

--- Comment #39 from vanessa786 <vanessarose786 at gmail dot com> ---
i like your post thank you so much for posting this i really like it a lot i
hope everyone like this post. <a
href="https://www.dhdubaiservices.com/wall-painting-services">wall painting
services</a>

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (39 preceding siblings ...)
  2020-10-26  6:54 ` vanessarose786 at gmail dot com
@ 2020-12-02  5:45 ` jackdie3438 at gmail dot com
  2020-12-02 10:10 ` mark at klomp dot org
  41 siblings, 0 replies; 43+ messages in thread
From: jackdie3438 at gmail dot com @ 2020-12-02  5:45 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

Jack Die <jackdie3438 at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jackdie3438 at gmail dot com

--- Comment #40 from Jack Die <jackdie3438 at gmail dot com> ---
Thanks for help about handling of files.Read more for info about more
files.https://bit.ly/3q9W94B

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

* [Bug tools/23787] eu-size: Bad handling of ar files inside are files
  2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
                   ` (40 preceding siblings ...)
  2020-12-02  5:45 ` jackdie3438 at gmail dot com
@ 2020-12-02 10:10 ` mark at klomp dot org
  41 siblings, 0 replies; 43+ messages in thread
From: mark at klomp dot org @ 2020-12-02 10:10 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23787

Mark Wielaard <mark at klomp dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|andrewlincon49 at gmail dot com,   |
                   |apizoid at gmail dot com,          |
                   |ardzimba30 at gmail dot com,       |
                   |ardzimba32 at gmail dot com,       |
                   |backgroundsound901 at gmail dot co |
                   |m,                          |
                   |bloonstowerdefense5.io@gmai |
                   |l.com,                      |
                   |bubbleshort321 at gmail dot com,   |
                   |claire at shoesformen dot com,     |
                   |damnedboy92 at gmail dot com,      |
                   |elfutils-devel at sourceware dot o |
                   |rg, fansocialfan at gmail dot com, |
                   |gpcannabisclub at gmail dot com,   |
                   |ijaffery7 at gmail dot com,        |
                   |info at saturdaysale dot com,      |
                   |jackdie3438 at gmail dot com,      |
                   |johnkaitlyn95 at gmail dot com,    |
                   |luciham20 at gmail dot com,        |
                   |omarandemad at gmail dot com,      |
                   |pinoytvtambayanhd at gmail dot com |
                   |, poonamsinghdnt at gmail dot com, |
                   |rajputveer8055 at gmail dot com,   |
                   |shahidanwar8359 at gmail dot com,  |
                   |shockfilm.in at gmail dot com,     |
                   |simpsonjoshua329 at gmail dot com, |
                   |support at youwin dot org.ng,      |
                   |tranhung22102019 at gmail dot com, |
                   |vanessarose786 at gmail dot com,   |
                   |xiloci6226 at gotkmail dot com,    |
                   |zarakhan8359 at gmail dot com      |

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 43+ messages in thread

end of thread, other threads:[~2020-12-02 10:10 UTC | newest]

Thread overview: 43+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-17 12:01 [Bug libelf/23787] New: Invalid Address Deference problem in function elf_end in libelf the latest elfutils-0.174 wcventure at 126 dot com
2018-10-17 12:02 ` [Bug libelf/23787] " wcventure at 126 dot com
2018-10-18 23:05 ` [Bug libelf/23787] eu-size: Bad handling of ar files inside are files mark at klomp dot org
2018-10-19 22:59 ` mark at klomp dot org
2018-11-14 11:46 ` mark at klomp dot org
2018-11-14 11:54 ` [Bug tools/23787] " mark at klomp dot org
2019-07-23  4:16 ` omarandemad at gmail dot com
2019-11-26  2:20 ` bloonstowerdefense5.io at gmail dot com
2019-11-26  2:20 ` bloonstowerdefense5.io at gmail dot com
2020-01-21 11:43 ` johnkaitlyn95 at gmail dot com
2020-02-12 12:45 ` ardzimba30 at gmail dot com
2020-02-19  8:35 ` apizoid at gmail dot com
2020-02-22 10:53 ` damnedboy92 at gmail dot com
2020-03-10 12:36 ` fansocialfan at gmail dot com
2020-03-12  9:43 ` damnedboy92 at gmail dot com
2020-03-16 15:23 ` damnedboy92 at gmail dot com
2020-03-28  5:17 ` rajputveer8055 at gmail dot com
2020-03-28  5:25 ` rajputveer8055 at gmail dot com
2020-04-01 13:07 ` andrewlincon49 at gmail dot com
2020-04-01 13:09 ` ptestpage32 at gmail dot com
2020-04-06 18:11 ` xiloci6226 at gotkmail dot com
2020-04-06 20:24 ` bubbleshort321 at gmail dot com
2020-04-06 20:26 ` bubbleshort321 at gmail dot com
2020-04-15  7:17 ` luciham20 at gmail dot com
2020-04-17 22:45 ` ijaffery7 at gmail dot com
2020-04-19 17:57 ` ardzimba32 at gmail dot com
2020-04-22 11:30 ` backgroundsound901 at gmail dot com
2020-04-28  4:31 ` claire at shoesformen dot com
2020-04-28  4:32 ` claire at shoesformen dot com
2020-05-11  8:00 ` simpsonjoshua329 at gmail dot com
2020-06-06  9:57 ` shockfilm.in at gmail dot com
2020-08-09  2:10 ` info at saturdaysale dot com
2020-08-12  2:01 ` tranhung22102019 at gmail dot com
2020-08-25 10:05 ` pinoytvtambayanhd at gmail dot com
2020-09-08  6:09 ` support at youwin dot org.ng
2020-09-20  1:00 ` gpcannabisclub at gmail dot com
2020-09-28  8:14 ` shahidanwar8359 at gmail dot com
2020-09-28  8:17 ` shahidanwar8359 at gmail dot com
2020-09-28  8:22 ` zarakhan8359 at gmail dot com
2020-10-08 20:48 ` poonamsinghdnt at gmail dot com
2020-10-26  6:54 ` vanessarose786 at gmail dot com
2020-12-02  5:45 ` jackdie3438 at gmail dot com
2020-12-02 10:10 ` mark at klomp dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).