Just BS - The Ultimate Chat and Debate Forum: [ 133+ ] "Innards" is Now "Deprecated" in Favor of "Internals", I Hear - Just BS - The Ultimate Chat and Debate Forum

Jump to content

Welcome to Just BS - The Ultimate Chat and Debate Forum!

Just BS is a community for people to engage in intelligent conversations and debates with like minded individuals. If you to want to discuss politics or religion you'll find people that will join in on any political and religious discussions you start. So why not Join Today?

  • (2 Pages)
  • +
  • 1
  • 2
  • You cannot start a new topic
  • You cannot reply to this topic

[ 133+ ] "Innards" is Now "Deprecated" in Favor of "Internals", I Hear
Rate Topic: -----


#1 mimus

  • Group: Guests

Posted 26 December 2007 - 06:47 PM

I've been using gedit to text-search a readelf file-dump of my
libc-2.3.5.so C runtime library's .dynsym table to get the --start- and
--stop-addresses objdump needs to allow me to look at the assembly code
libc provides for the standard C library functions.

This is bad.

(And what idiot committee decided to put the start-addresses in hex and
the lengths of the snippets in decimal? twisted mofoes.)

For example, here's the libc-2.3.5.so .dynsym line for the standard C
string function strcpy(), which copies a string into a new location:

00066a8c 35 FUNC GLOBAL DEFAULT 11 strcpy@@GLIBC_2.0

here's the resulting objdump command (I was in the /lib directory):

objdump -d --no-show-raw-insn --start-address=0x00066a8c --stop-address=0x00066aaf libc-2.3.5.so

and here's the output of that command:

libc-2.3.5.so: file format elf32-i386

Disassembly of section .plt:
Disassembly of section .text:

00066a8c :
66a8c: push %ebp
66a8d: mov %esp,%ebp
66a8f: push %esi
66a90: mov 0x8(%ebp),%esi
66a93: mov 0xc(%ebp),%edx
66a96: mov %esi,%eax
66a98: sub %edx,%eax
66a9a: lea 0xffffffff(%eax),%ecx
66a9d: movzbl (%edx),%eax
66aa0: add $0x1,%edx
66aa3: test %al,%al
66aa5: mov %al,(%edx,%ecx,1)
66aa8: jne 66a9d
66aaa: mov %esi,%eax
66aac: pop %esi
66aad: pop %ebp
66aae: ret

My eyes started watering last night and haven't stopped . . . .

--
tinmimus99@hotmail.com

smeeter 11 or maybe 12

mp 10

mhm 29x13

Where am I, Dove?

< _The Einstein Intersection_


0


#2 mixed nuts

  • Group: Guests

Posted 26 December 2007 - 06:47 PM

mimus wrote:
> I've been using gedit to text-search a readelf file-dump of my
> libc-2.3.5.so C runtime library's .dynsym table to get the --start- and
> --stop-addresses objdump needs to allow me to look at the assembly code
> libc provides for the standard C library functions.
>
> This is bad.
>
> (And what idiot committee decided to put the start-addresses in hex and
> the lengths of the snippets in decimal? twisted mofoes.)
>
> For example, here's the libc-2.3.5.so .dynsym line for the standard C
> string function strcpy(), which copies a string into a new location:
>
> 00066a8c 35 FUNC GLOBAL DEFAULT 11 strcpy@@GLIBC_2.0
>
> here's the resulting objdump command (I was in the /lib directory):
>
> objdump -d --no-show-raw-insn --start-address=0x00066a8c --stop-address=0x00066aaf libc-2.3.5.so
>
> and here's the output of that command:
>
> libc-2.3.5.so: file format elf32-i386
>
> Disassembly of section .plt:
> Disassembly of section .text:
>
> 00066a8c :
> 66a8c: push %ebp
> 66a8d: mov %esp,%ebp
> 66a8f: push %esi
> 66a90: mov 0x8(%ebp),%esi
> 66a93: mov 0xc(%ebp),%edx
> 66a96: mov %esi,%eax
> 66a98: sub %edx,%eax
> 66a9a: lea 0xffffffff(%eax),%ecx
> 66a9d: movzbl (%edx),%eax
> 66aa0: add $0x1,%edx
> 66aa3: test %al,%al
> 66aa5: mov %al,(%edx,%ecx,1)
> 66aa8: jne 66a9d
> 66aaa: mov %esi,%eax
> 66aac: pop %esi
> 66aad: pop %ebp
> 66aae: ret
>
> My eyes started watering last night and haven't stopped . . . .
>


As well they should, and shouldn't.

--
nuts

0


#3 Shirley

  • Group: Guests

Posted 26 December 2007 - 06:47 PM


"mimus" wrote in message
news:q56dnXjK9Lmw6O_anZ2dnUVZ_uevnZ2d@giganews.com...
> I've been using gedit to text-search a readelf file-dump of my
> libc-2.3.5.so C runtime library's .dynsym table to get the --start- and
> --stop-addresses objdump needs to allow me to look at the assembly code
> libc provides for the standard C library functions.
>
> This is bad.
>
> (And what idiot committee decided to put the start-addresses in hex and
> the lengths of the snippets in decimal? twisted mofoes.)
>
> For example, here's the libc-2.3.5.so .dynsym line for the standard C
> string function strcpy(), which copies a string into a new location:
>
> 00066a8c 35 FUNC GLOBAL DEFAULT 11 strcpy@@GLIBC_2.0
>
> here's the resulting objdump command (I was in the /lib directory):
>
> objdump -d --no-show-raw-insn --start-address=0x00066a8c --stop-address=0x00066aaf
> libc-2.3.5.so
>
> and here's the output of that command:
>
> libc-2.3.5.so: file format elf32-i386
>
> Disassembly of section .plt:
> Disassembly of section .text:
>
> 00066a8c :
> 66a8c: push %ebp
> 66a8d: mov %esp,%ebp
> 66a8f: push %esi
> 66a90: mov 0x8(%ebp),%esi
> 66a93: mov 0xc(%ebp),%edx
> 66a96: mov %esi,%eax
> 66a98: sub %edx,%eax
> 66a9a: lea 0xffffffff(%eax),%ecx
> 66a9d: movzbl (%edx),%eax
> 66aa0: add $0x1,%edx
> 66aa3: test %al,%al
> 66aa5: mov %al,(%edx,%ecx,1)
> 66aa8: jne 66a9d
> 66aaa: mov %esi,%eax
> 66aac: pop %esi
> 66aad: pop %ebp
> 66aae: ret
>
> My eyes started watering last night and haven't stopped . . . .


Speeds up process of finding mimus a girlfriend.

>
> --
> tinmimus99@hotmail.com
>
> smeeter 11 or maybe 12
>
> mp 10
>
> mhm 29x13
>
> Where am I, Dove?
>
> < _The Einstein Intersection_
>




0


#4 mimus

  • Group: Guests

Posted 26 December 2007 - 06:47 PM

On Wed, 26 Dec 2007 11:12:56 -0500, mixed nuts wrote:

> mimus wrote:
>
>> I've been using gedit to text-search a readelf file-dump of my
>> libc-2.3.5.so C runtime library's .dynsym table to get the --start- and
>> --stop-addresses objdump needs to allow me to look at the assembly code
>> libc provides for the standard C library functions.
>>
>> This is bad.
>>
>> (And what idiot committee decided to put the start-addresses in hex and
>> the lengths of the snippets in decimal? twisted mofoes.)
>>
>> For example, here's the libc-2.3.5.so .dynsym line for the standard C
>> string function strcpy(), which copies a string into a new location:
>>
>> 00066a8c 35 FUNC GLOBAL DEFAULT 11 strcpy@@GLIBC_2.0
>>
>> here's the resulting objdump command (I was in the /lib directory):
>>
>> objdump -d --no-show-raw-insn --start-address=0x00066a8c --stop-address=0x00066aaf libc-2.3.5.so
>>
>> and here's the output of that command:
>>
>> libc-2.3.5.so: file format elf32-i386
>>
>> Disassembly of section .plt:
>> Disassembly of section .text:
>>
>> 00066a8c :
>> 66a8c: push %ebp
>> 66a8d: mov %esp,%ebp
>> 66a8f: push %esi
>> 66a90: mov 0x8(%ebp),%esi
>> 66a93: mov 0xc(%ebp),%edx
>> 66a96: mov %esi,%eax
>> 66a98: sub %edx,%eax
>> 66a9a: lea 0xffffffff(%eax),%ecx
>> 66a9d: movzbl (%edx),%eax
>> 66aa0: add $0x1,%edx
>> 66aa3: test %al,%al
>> 66aa5: mov %al,(%edx,%ecx,1)
>> 66aa8: jne 66a9d
>> 66aaa: mov %esi,%eax
>> 66aac: pop %esi
>> 66aad: pop %ebp
>> 66aae: ret
>>
>> My eyes started watering last night and haven't stopped . . . .

>
> As well they should, and shouldn't.


Howdja like that twos-complement masked negative there? (That's what I'm
guessing it is, since I haven't buckled down and made a nice pretty text
IA quick-reference from those three huge .pdfs on the subject I, er,
"borrowed" several years ago-- you could download the things and read 'em,
but Adobe wouldn't let you save them, yet wait, I said to myself, they've
got to be stored _somewhere_ around here, and lo . . . .)

(They do try to call home, the snitches, or at least did under Adobe
and Win98.)

printf() looked all short and sweet, until I realized it was calling
vprintf(), which is about 15K . . . .

(I knew the 6510 AL pretty darn well, enough so to knock up little
utilities in it, write a text-mode video-game (basically flickerin'
"Jumbles"), and modify the C64 BASIC and KERNEL-- both of which I had
printed out and parsed-- for fun . . . .)

--
tinmimus99@hotmail.com

smeeter 11 or maybe 12

mp 10

mhm 29x13

Let's get the hell out of here while we can still pass
our Rorschasch tests.

< _The Last Happy Hour_


0


#5 mimus

  • Group: Guests

Posted 26 December 2007 - 06:47 PM

On Wed, 26 Dec 2007 11:18:56 -0500, Shirley wrote:

> "mimus" wrote in message
> news:q56dnXjK9Lmw6O_anZ2dnUVZ_uevnZ2d@giganews.com...
>
>> I've been using gedit to text-search a readelf file-dump of my
>> libc-2.3.5.so C runtime library's .dynsym table to get the --start- and
>> --stop-addresses objdump needs to allow me to look at the assembly code
>> libc provides for the standard C library functions.
>>
>> This is bad.
>>
>> (And what idiot committee decided to put the start-addresses in hex and
>> the lengths of the snippets in decimal? twisted mofoes.)
>>
>> For example, here's the libc-2.3.5.so .dynsym line for the standard C
>> string function strcpy(), which copies a string into a new location:
>>
>> 00066a8c 35 FUNC GLOBAL DEFAULT 11 strcpy@@GLIBC_2.0
>>
>> here's the resulting objdump command (I was in the /lib directory):
>>
>> objdump -d --no-show-raw-insn --start-address=0x00066a8c --stop-address=0x00066aaf
>> libc-2.3.5.so
>>
>> and here's the output of that command:
>>
>> libc-2.3.5.so: file format elf32-i386
>>
>> Disassembly of section .plt:
>> Disassembly of section .text:
>>
>> 00066a8c :
>> 66a8c: push %ebp
>> 66a8d: mov %esp,%ebp
>> 66a8f: push %esi
>> 66a90: mov 0x8(%ebp),%esi
>> 66a93: mov 0xc(%ebp),%edx
>> 66a96: mov %esi,%eax
>> 66a98: sub %edx,%eax
>> 66a9a: lea 0xffffffff(%eax),%ecx
>> 66a9d: movzbl (%edx),%eax
>> 66aa0: add $0x1,%edx
>> 66aa3: test %al,%al
>> 66aa5: mov %al,(%edx,%ecx,1)
>> 66aa8: jne 66a9d
>> 66aaa: mov %esi,%eax
>> 66aac: pop %esi
>> 66aad: pop %ebp
>> 66aae: ret
>>
>> My eyes started watering last night and haven't stopped . . . .

>
> Speeds up process of finding mimus a girlfriend.


Don't try to tamper with my budding relationship with Libby C. here, woman.

--
tinmimus99@hotmail.com

smeeter 11 or maybe 12

mp 10

mhm 29x13

You want a job and a lizard to ride?

< _The Einstein Intersection_


0


#6 dave hillstrom

  • Group: Guests

Posted 26 December 2007 - 06:47 PM

On Wed, 26 Dec 2007 10:37:31 -0500, mimus
wrote:

>I've been using gedit to text-search a readelf file-dump of my
>libc-2.3.5.so C runtime library's .dynsym table to get the --start- and
>--stop-addresses objdump needs to allow me to look at the assembly code
>libc provides for the standard C library functions.
>
>This is bad.
>
>(And what idiot committee decided to put the start-addresses in hex and
>the lengths of the snippets in decimal? twisted mofoes.)
>
>For example, here's the libc-2.3.5.so .dynsym line for the standard C
>string function strcpy(), which copies a string into a new location:
>
>00066a8c 35 FUNC GLOBAL DEFAULT 11 strcpy@@GLIBC_2.0
>
>here's the resulting objdump command (I was in the /lib directory):
>
>objdump -d --no-show-raw-insn --start-address=0x00066a8c --stop-address=0x00066aaf libc-2.3.5.so
>
>and here's the output of that command:
>
>libc-2.3.5.so: file format elf32-i386
>
>Disassembly of section .plt:
>Disassembly of section .text:
>
>00066a8c :
> 66a8c: push %ebp
> 66a8d: mov %esp,%ebp
> 66a8f: push %esi
> 66a90: mov 0x8(%ebp),%esi
> 66a93: mov 0xc(%ebp),%edx
> 66a96: mov %esi,%eax
> 66a98: sub %edx,%eax
> 66a9a: lea 0xffffffff(%eax),%ecx
> 66a9d: movzbl (%edx),%eax
> 66aa0: add $0x1,%edx
> 66aa3: test %al,%al
> 66aa5: mov %al,(%edx,%ecx,1)
> 66aa8: jne 66a9d
> 66aaa: mov %esi,%eax
> 66aac: pop %esi
> 66aad: pop %ebp
> 66aae: ret
>
>My eyes started watering last night and haven't stopped . . . .


youd never make it as a microcontroller guy, you know.

--
dave hillstrom mhm15x4 zrbj



0


#7 mimus

  • Group: Guests

Posted 27 December 2007 - 02:47 AM

On Wed, 26 Dec 2007 12:42:39 -0500, dave hillstrom wrote:

> On Wed, 26 Dec 2007 10:37:31 -0500, mimus
> wrote:
>
>>I've been using gedit to text-search a readelf file-dump of my
>>libc-2.3.5.so C runtime library's .dynsym table to get the --start- and
>>--stop-addresses objdump needs to allow me to look at the assembly code
>>libc provides for the standard C library functions.
>>
>>This is bad.
>>
>>(And what idiot committee decided to put the start-addresses in hex and
>>the lengths of the snippets in decimal? twisted mofoes.)
>>
>>For example, here's the libc-2.3.5.so .dynsym line for the standard C
>>string function strcpy(), which copies a string into a new location:
>>
>>00066a8c 35 FUNC GLOBAL DEFAULT 11 strcpy@@GLIBC_2.0
>>
>>here's the resulting objdump command (I was in the /lib directory):
>>
>>objdump -d --no-show-raw-insn --start-address=0x00066a8c --stop-address=0x00066aaf libc-2.3.5.so
>>
>>and here's the output of that command:
>>
>>libc-2.3.5.so: file format elf32-i386
>>
>>Disassembly of section .plt:
>>Disassembly of section .text:
>>
>>00066a8c :
>> 66a8c: push %ebp
>> 66a8d: mov %esp,%ebp
>> 66a8f: push %esi
>> 66a90: mov 0x8(%ebp),%esi
>> 66a93: mov 0xc(%ebp),%edx
>> 66a96: mov %esi,%eax
>> 66a98: sub %edx,%eax
>> 66a9a: lea 0xffffffff(%eax),%ecx
>> 66a9d: movzbl (%edx),%eax
>> 66aa0: add $0x1,%edx
>> 66aa3: test %al,%al
>> 66aa5: mov %al,(%edx,%ecx,1)
>> 66aa8: jne 66a9d
>> 66aaa: mov %esi,%eax
>> 66aac: pop %esi
>> 66aad: pop %ebp
>> 66aae: ret
>>
>>My eyes started watering last night and haven't stopped . . . .

>
> youd never make it as a microcontroller guy, you know.


I'm kind of irritated by this "run-time library" business, but I can see
the reasoning, and it _is_ all whippin' back and forth in RAM.

--
tinmimus99@hotmail.com

smeeter 11 or maybe 12

mp 10

mhm 29x13

+++ Divide By Cucumber Error. Please Reinstall Universe And Reboot. +++

< Hex


0


#8 Shirley

  • Group: Guests

Posted 27 December 2007 - 02:47 AM


"mimus" wrote in message
news:__Cdnekrbuc_Fe_anZ2dnUVZ_jydnZ2d@giganews.com...
> On Wed, 26 Dec 2007 11:18:56 -0500, Shirley wrote:
>
>> "mimus" wrote in message
>> news:q56dnXjK9Lmw6O_anZ2dnUVZ_uevnZ2d@giganews.com...
>>
>>> I've been using gedit to text-search a readelf file-dump of my
>>> libc-2.3.5.so C runtime library's .dynsym table to get the --start- and
>>> --stop-addresses objdump needs to allow me to look at the assembly code
>>> libc provides for the standard C library functions.
>>>
>>> This is bad.
>>>
>>> (And what idiot committee decided to put the start-addresses in hex and
>>> the lengths of the snippets in decimal? twisted mofoes.)
>>>
>>> For example, here's the libc-2.3.5.so .dynsym line for the standard C
>>> string function strcpy(), which copies a string into a new location:
>>>
>>> 00066a8c 35 FUNC GLOBAL DEFAULT 11 strcpy@@GLIBC_2.0
>>>
>>> here's the resulting objdump command (I was in the /lib directory):
>>>
>>> objdump -d --no-show-raw-insn --start-address=0x00066a8c --stop-address=0x00066aaf
>>> libc-2.3.5.so
>>>
>>> and here's the output of that command:
>>>
>>> libc-2.3.5.so: file format elf32-i386
>>>
>>> Disassembly of section .plt:
>>> Disassembly of section .text:
>>>
>>> 00066a8c :
>>> 66a8c: push %ebp
>>> 66a8d: mov %esp,%ebp
>>> 66a8f: push %esi
>>> 66a90: mov 0x8(%ebp),%esi
>>> 66a93: mov 0xc(%ebp),%edx
>>> 66a96: mov %esi,%eax
>>> 66a98: sub %edx,%eax
>>> 66a9a: lea 0xffffffff(%eax),%ecx
>>> 66a9d: movzbl (%edx),%eax
>>> 66aa0: add $0x1,%edx
>>> 66aa3: test %al,%al
>>> 66aa5: mov %al,(%edx,%ecx,1)
>>> 66aa8: jne 66a9d
>>> 66aaa: mov %esi,%eax
>>> 66aac: pop %esi
>>> 66aad: pop %ebp
>>> 66aae: ret
>>>
>>> My eyes started watering last night and haven't stopped . . . .

>>
>> Speeds up process of finding mimus a girlfriend.

>
> Don't try to tamper with my budding relationship with Libby C. here,
> woman.


Who is Libby C.?

Did someone send a memo out and I somehow missplaced mine?





>
> --
> tinmimus99@hotmail.com
>
> smeeter 11 or maybe 12
>
> mp 10
>
> mhm 29x13
>
> You want a job and a lizard to ride?
>
> < _The Einstein Intersection_
>




0


#9 mimus

  • Group: Guests

Posted 27 December 2007 - 02:47 AM

On Wed, 26 Dec 2007 14:06:09 -0500, Shirley wrote:

> "mimus" wrote in message
> news:__Cdnekrbuc_Fe_anZ2dnUVZ_jydnZ2d@giganews.com...
>
>> On Wed, 26 Dec 2007 11:18:56 -0500, Shirley wrote:
>>
>>> "mimus" wrote in message
>>> news:q56dnXjK9Lmw6O_anZ2dnUVZ_uevnZ2d@giganews.com...
>>>
>>>> I've been using gedit to text-search a readelf file-dump of my
>>>> libc-2.3.5.so C runtime library's .dynsym table to get the --start- and
>>>> --stop-addresses objdump needs to allow me to look at the assembly code
>>>> libc provides for the standard C library functions.
>>>>
>>>> This is bad.
>>>>
>>>> (And what idiot committee decided to put the start-addresses in hex and
>>>> the lengths of the snippets in decimal? twisted mofoes.)
>>>>
>>>> For example, here's the libc-2.3.5.so .dynsym line for the standard C
>>>> string function strcpy(), which copies a string into a new location:
>>>>
>>>> 00066a8c 35 FUNC GLOBAL DEFAULT 11 strcpy@@GLIBC_2.0
>>>>
>>>> here's the resulting objdump command (I was in the /lib directory):
>>>>
>>>> objdump -d --no-show-raw-insn --start-address=0x00066a8c --stop-address=0x00066aaf
>>>> libc-2.3.5.so
>>>>
>>>> and here's the output of that command:
>>>>
>>>> libc-2.3.5.so: file format elf32-i386
>>>>
>>>> Disassembly of section .plt:
>>>> Disassembly of section .text:
>>>>
>>>> 00066a8c :
>>>> 66a8c: push %ebp
>>>> 66a8d: mov %esp,%ebp
>>>> 66a8f: push %esi
>>>> 66a90: mov 0x8(%ebp),%esi
>>>> 66a93: mov 0xc(%ebp),%edx
>>>> 66a96: mov %esi,%eax
>>>> 66a98: sub %edx,%eax
>>>> 66a9a: lea 0xffffffff(%eax),%ecx
>>>> 66a9d: movzbl (%edx),%eax
>>>> 66aa0: add $0x1,%edx
>>>> 66aa3: test %al,%al
>>>> 66aa5: mov %al,(%edx,%ecx,1)
>>>> 66aa8: jne 66a9d
>>>> 66aaa: mov %esi,%eax
>>>> 66aac: pop %esi
>>>> 66aad: pop %ebp
>>>> 66aae: ret
>>>>
>>>> My eyes started watering last night and haven't stopped . . . .
>>>
>>> Speeds up process of finding mimus a girlfriend.

>>
>> Don't try to tamper with my budding relationship with Libby C. here,
>> woman.

>
> Who is Libby C.?


She's just some chick.

> Did someone send a memo out and I somehow missplaced mine?


That happens to me all the time.

The best was the time I was driving _through_ Ohio and _over the Great
River to_ West Virginia, and, like, the bridge was gone . . . .

--
tinmimus99@hotmail.com

smeeter 11 or maybe 12

mp 10

mhm 29x13

The roads crawled in all directions like
crayfish poured out of a bag.

< Gogol


0


#10 Shirley

  • Group: Guests

Posted 27 December 2007 - 02:47 AM


"mimus" wrote in message
news:4I-dnQl41K67Mu_anZ2dnUVZ_jydnZ2d@giganews.com...
> On Wed, 26 Dec 2007 14:06:09 -0500, Shirley wrote:
>
>> "mimus" wrote in message
>> news:__Cdnekrbuc_Fe_anZ2dnUVZ_jydnZ2d@giganews.com...
>>
>>> On Wed, 26 Dec 2007 11:18:56 -0500, Shirley wrote:
>>>
>>>> "mimus" wrote in message
>>>> news:q56dnXjK9Lmw6O_anZ2dnUVZ_uevnZ2d@giganews.com...
>>>>
>>>>> I've been using gedit to text-search a readelf file-dump of my
>>>>> libc-2.3.5.so C runtime library's .dynsym table to get the --start-
>>>>> and
>>>>> --stop-addresses objdump needs to allow me to look at the assembly
>>>>> code
>>>>> libc provides for the standard C library functions.
>>>>>
>>>>> This is bad.
>>>>>
>>>>> (And what idiot committee decided to put the start-addresses in hex
>>>>> and
>>>>> the lengths of the snippets in decimal? twisted mofoes.)
>>>>>
>>>>> For example, here's the libc-2.3.5.so .dynsym line for the standard C
>>>>> string function strcpy(), which copies a string into a new location:
>>>>>
>>>>> 00066a8c 35 FUNC GLOBAL DEFAULT 11 strcpy@@GLIBC_2.0
>>>>>
>>>>> here's the resulting objdump command (I was in the /lib directory):
>>>>>
>>>>> objdump -d --no-show-raw-insn --start-address=0x00066a8c --stop-address=0x00066aaf
>>>>> libc-2.3.5.so
>>>>>
>>>>> and here's the output of that command:
>>>>>
>>>>> libc-2.3.5.so: file format elf32-i386
>>>>>
>>>>> Disassembly of section .plt:
>>>>> Disassembly of section .text:
>>>>>
>>>>> 00066a8c :
>>>>> 66a8c: push %ebp
>>>>> 66a8d: mov %esp,%ebp
>>>>> 66a8f: push %esi
>>>>> 66a90: mov 0x8(%ebp),%esi
>>>>> 66a93: mov 0xc(%ebp),%edx
>>>>> 66a96: mov %esi,%eax
>>>>> 66a98: sub %edx,%eax
>>>>> 66a9a: lea 0xffffffff(%eax),%ecx
>>>>> 66a9d: movzbl (%edx),%eax
>>>>> 66aa0: add $0x1,%edx
>>>>> 66aa3: test %al,%al
>>>>> 66aa5: mov %al,(%edx,%ecx,1)
>>>>> 66aa8: jne 66a9d
>>>>> 66aaa: mov %esi,%eax
>>>>> 66aac: pop %esi
>>>>> 66aad: pop %ebp
>>>>> 66aae: ret
>>>>>
>>>>> My eyes started watering last night and haven't stopped . . . .
>>>>
>>>> Speeds up process of finding mimus a girlfriend.
>>>
>>> Don't try to tamper with my budding relationship with Libby C. here,
>>> woman.

>>
>> Who is Libby C.?

>
> She's just some chick.


When the wedding bells ring...do I get an invitation?

>
>> Did someone send a memo out and I somehow missplaced mine?

>
> That happens to me all the time.
>
> The best was the time I was driving _through_ Ohio and _over the Great
> River to_ West Virginia, and, like, the bridge was gone . . . .


What did you do?

>
> --
> tinmimus99@hotmail.com
>
> smeeter 11 or maybe 12
>
> mp 10
>
> mhm 29x13
>
> The roads crawled in all directions like
> crayfish poured out of a bag.
>
> < Gogol
>




0


#11 mimus

  • Group: Guests

Posted 27 December 2007 - 02:47 AM

On Wed, 26 Dec 2007 14:48:41 -0500, Shirley wrote:

>
> "mimus" wrote in message
> news:4I-dnQl41K67Mu_anZ2dnUVZ_jydnZ2d@giganews.com...
>> On Wed, 26 Dec 2007 14:06:09 -0500, Shirley wrote:
>>
>>> "mimus" wrote in message
>>> news:__Cdnekrbuc_Fe_anZ2dnUVZ_jydnZ2d@giganews.com...
>>>
>>>> On Wed, 26 Dec 2007 11:18:56 -0500, Shirley wrote:
>>>>
>>>>> "mimus" wrote in message
>>>>> news:q56dnXjK9Lmw6O_anZ2dnUVZ_uevnZ2d@giganews.com...
>>>>>
>>>>>> I've been using gedit to text-search a readelf file-dump of my
>>>>>> libc-2.3.5.so C runtime library's .dynsym table to get the --start-
>>>>>> and
>>>>>> --stop-addresses objdump needs to allow me to look at the assembly
>>>>>> code
>>>>>> libc provides for the standard C library functions.
>>>>>>
>>>>>> This is bad.
>>>>>>
>>>>>> (And what idiot committee decided to put the start-addresses in hex
>>>>>> and
>>>>>> the lengths of the snippets in decimal? twisted mofoes.)
>>>>>>
>>>>>> For example, here's the libc-2.3.5.so .dynsym line for the standard C
>>>>>> string function strcpy(), which copies a string into a new location:
>>>>>>
>>>>>> 00066a8c 35 FUNC GLOBAL DEFAULT 11 strcpy@@GLIBC_2.0
>>>>>>
>>>>>> here's the resulting objdump command (I was in the /lib directory):
>>>>>>
>>>>>> objdump -d --no-show-raw-insn --start-address=0x00066a8c --stop-address=0x00066aaf
>>>>>> libc-2.3.5.so
>>>>>>
>>>>>> and here's the output of that command:
>>>>>>
>>>>>> libc-2.3.5.so: file format elf32-i386
>>>>>>
>>>>>> Disassembly of section .plt:
>>>>>> Disassembly of section .text:
>>>>>>
>>>>>> 00066a8c :
>>>>>> 66a8c: push %ebp
>>>>>> 66a8d: mov %esp,%ebp
>>>>>> 66a8f: push %esi
>>>>>> 66a90: mov 0x8(%ebp),%esi
>>>>>> 66a93: mov 0xc(%ebp),%edx
>>>>>> 66a96: mov %esi,%eax
>>>>>> 66a98: sub %edx,%eax
>>>>>> 66a9a: lea 0xffffffff(%eax),%ecx
>>>>>> 66a9d: movzbl (%edx),%eax
>>>>>> 66aa0: add $0x1,%edx
>>>>>> 66aa3: test %al,%al
>>>>>> 66aa5: mov %al,(%edx,%ecx,1)
>>>>>> 66aa8: jne 66a9d
>>>>>> 66aaa: mov %esi,%eax
>>>>>> 66aac: pop %esi
>>>>>> 66aad: pop %ebp
>>>>>> 66aae: ret
>>>>>>
>>>>>> My eyes started watering last night and haven't stopped . . . .
>>>>>
>>>>> Speeds up process of finding mimus a girlfriend.
>>>>
>>>> Don't try to tamper with my budding relationship with Libby C. here,
>>>> woman.
>>>
>>> Who is Libby C.?

>>
>> She's just some chick.

>
> When the wedding bells ring...do I get an invitation?


Sure.

>>> Did someone send a memo out and I somehow missplaced mine?

>>
>> That happens to me all the time.
>>
>> The best was the time I was driving _through_ Ohio and _over the Great
>> River to_ West Virginia, and, like, the bridge was gone . . . .

>
> What did you do?




Parked and wandered out to where the road ended to smoke a cig or two and
ponder.

(That was after the "Holy fuck!" and head-clutching part.)

--
tinmimus99@hotmail.com

smeeter 11 or maybe 12

mp 10

mhm 29x13

It's a plot it's a plot it's _Pavlovian conditioning!_

< _Gravity's Rainbow_





0


#12 mixed nuts

  • Group: Guests

Posted 27 December 2007 - 02:47 AM

mimus wrote:
> On Wed, 26 Dec 2007 14:06:09 -0500, Shirley wrote:
>
>>"mimus" wrote in message
>>news:__Cdnekrbuc_Fe_anZ2dnUVZ_jydnZ2d@giganews.com...
>>
>>>On Wed, 26 Dec 2007 11:18:56 -0500, Shirley wrote:
>>>
>>>>"mimus" wrote in message
>>>>news:q56dnXjK9Lmw6O_anZ2dnUVZ_uevnZ2d@giganews.com...
>>>>
>>>>>I've been using gedit to text-search a readelf file-dump of my
>>>>>libc-2.3.5.so C runtime library's .dynsym table to get the --start- and
>>>>>--stop-addresses objdump needs to allow me to look at the assembly code
>>>>>libc provides for the standard C library functions.
>>>>>
>>>>>This is bad.
>>>>>
>>>>>(And what idiot committee decided to put the start-addresses in hex and
>>>>>the lengths of the snippets in decimal? twisted mofoes.)
>>>>>
>>>>>For example, here's the libc-2.3.5.so .dynsym line for the standard C
>>>>>string function strcpy(), which copies a string into a new location:
>>>>>
>>>>>00066a8c 35 FUNC GLOBAL DEFAULT 11 strcpy@@GLIBC_2.0
>>>>>
>>>>>here's the resulting objdump command (I was in the /lib directory):
>>>>>
>>>>>objdump -d --no-show-raw-insn --start-address=0x00066a8c --stop-address=0x00066aaf
>>>>>libc-2.3.5.so
>>>>>
>>>>>and here's the output of that command:
>>>>>
>>>>>libc-2.3.5.so: file format elf32-i386
>>>>>
>>>>>Disassembly of section .plt:
>>>>>Disassembly of section .text:
>>>>>
>>>>>00066a8c :
>>>>> 66a8c: push %ebp
>>>>> 66a8d: mov %esp,%ebp
>>>>> 66a8f: push %esi
>>>>> 66a90: mov 0x8(%ebp),%esi
>>>>> 66a93: mov 0xc(%ebp),%edx
>>>>> 66a96: mov %esi,%eax
>>>>> 66a98: sub %edx,%eax
>>>>> 66a9a: lea 0xffffffff(%eax),%ecx
>>>>> 66a9d: movzbl (%edx),%eax
>>>>> 66aa0: add $0x1,%edx
>>>>> 66aa3: test %al,%al
>>>>> 66aa5: mov %al,(%edx,%ecx,1)
>>>>> 66aa8: jne 66a9d
>>>>> 66aaa: mov %esi,%eax
>>>>> 66aac: pop %esi
>>>>> 66aad: pop %ebp
>>>>> 66aae: ret
>>>>>
>>>>>My eyes started watering last night and haven't stopped . . . .
>>>>
>>>>Speeds up process of finding mimus a girlfriend.
>>>
>>>Don't try to tamper with my budding relationship with Libby C. here,
>>>woman.

>>
>>Who is Libby C.?

>
> She's just some chick.
>
>>Did someone send a memo out and I somehow missplaced mine?

>
> That happens to me all the time.
>
> The best was the time I was driving _through_ Ohio and _over the Great
> River to_ West Virginia, and, like, the bridge was gone . . . .
>


The great disappearance of teh Silver Bridge between Point Pleasant and
Gallipolis. I remember that. Caused the correction of the suspension
systems of several bridges including the 'Chain Bridge' in Amesbury, Ma
(over which I drive almost daily). I knew somebody whose aunt ended up
in the drink (but otherwise not seriously hurt) as a result of riding
the bridge to its demise.

--
nuts


0


#13 mimus

  • Group: Guests

Posted 27 December 2007 - 02:47 AM

On Wed, 26 Dec 2007 16:02:11 -0500, mixed nuts wrote:

> mimus wrote:
>
>> On Wed, 26 Dec 2007 14:06:09 -0500, Shirley wrote:
>>
>>>"mimus" wrote in message
>>>news:__Cdnekrbuc_Fe_anZ2dnUVZ_jydnZ2d@giganews.com...
>>>
>>>>On Wed, 26 Dec 2007 11:18:56 -0500, Shirley wrote:
>>>>
>>>>>"mimus" wrote in message
>>>>>news:q56dnXjK9Lmw6O_anZ2dnUVZ_uevnZ2d@giganews.com...
>>>>>
>>>>>>I've been using gedit to text-search a readelf file-dump of my
>>>>>>libc-2.3.5.so C runtime library's .dynsym table to get the --start- and
>>>>>>--stop-addresses objdump needs to allow me to look at the assembly code
>>>>>>libc provides for the standard C library functions.
>>>>>>
>>>>>>This is bad.
>>>>>>
>>>>>>(And what idiot committee decided to put the start-addresses in hex and
>>>>>>the lengths of the snippets in decimal? twisted mofoes.)
>>>>>>
>>>>>>For example, here's the libc-2.3.5.so .dynsym line for the standard C
>>>>>>string function strcpy(), which copies a string into a new location:
>>>>>>
>>>>>>00066a8c 35 FUNC GLOBAL DEFAULT 11 strcpy@@GLIBC_2.0
>>>>>>
>>>>>>here's the resulting objdump command (I was in the /lib directory):
>>>>>>
>>>>>>objdump -d --no-show-raw-insn --start-address=0x00066a8c --stop-address=0x00066aaf
>>>>>>libc-2.3.5.so
>>>>>>
>>>>>>and here's the output of that command:
>>>>>>
>>>>>>libc-2.3.5.so: file format elf32-i386
>>>>>>
>>>>>>Disassembly of section .plt:
>>>>>>Disassembly of section .text:
>>>>>>
>>>>>>00066a8c :
>>>>>> 66a8c: push %ebp
>>>>>> 66a8d: mov %esp,%ebp
>>>>>> 66a8f: push %esi
>>>>>> 66a90: mov 0x8(%ebp),%esi
>>>>>> 66a93: mov 0xc(%ebp),%edx
>>>>>> 66a96: mov %esi,%eax
>>>>>> 66a98: sub %edx,%eax
>>>>>> 66a9a: lea 0xffffffff(%eax),%ecx
>>>>>> 66a9d: movzbl (%edx),%eax
>>>>>> 66aa0: add $0x1,%edx
>>>>>> 66aa3: test %al,%al
>>>>>> 66aa5: mov %al,(%edx,%ecx,1)
>>>>>> 66aa8: jne 66a9d
>>>>>> 66aaa: mov %esi,%eax
>>>>>> 66aac: pop %esi
>>>>>> 66aad: pop %ebp
>>>>>> 66aae: ret
>>>>>>
>>>>>>My eyes started watering last night and haven't stopped . . . .
>>>>>
>>>>>Speeds up process of finding mimus a girlfriend.
>>>>
>>>>Don't try to tamper with my budding relationship with Libby C. here,
>>>>woman.
>>>
>>>Who is Libby C.?

>>
>> She's just some chick.
>>
>>>Did someone send a memo out and I somehow missplaced mine?

>>
>> That happens to me all the time.
>>
>> The best was the time I was driving _through_ Ohio and _over the Great
>> River to_ West Virginia, and, like, the bridge was gone . . . .

>
> The great disappearance of teh Silver Bridge between Point Pleasant and
> Gallipolis. I remember that. Caused the correction of the suspension
> systems of several bridges including the 'Chain Bridge' in Amesbury, Ma
> (over which I drive almost daily).


No, this was another one.

The Silver Bridge convinced me for life that suspension bridges are best
avoided . . . .

And there is another one, just a few miles downriver of Gallipolis,
connecting Proctorville OH with Huntington WV.

It's pretty, I'll say that for it.

> I knew somebody whose aunt ended up
> in the drink (but otherwise not seriously hurt) as a result of riding
> the bridge to its demise.


Woohoo!

--
tinmimus99@hotmail.com

smeeter 11 or maybe 12

mp 10

mhm 29x13

You want a job and a lizard to ride?

< _The Einstein Intersection_


0


#14 Sharon B

  • Group: Guests

Posted 28 December 2007 - 02:47 AM

On Wed, 26 Dec 2007 16:02:11 -0500, mixed nuts
wrote in :

>mimus wrote:
>> On Wed, 26 Dec 2007 14:06:09 -0500, Shirley wrote:
>>
>>>"mimus" wrote in message
>>>news:__Cdnekrbuc_Fe_anZ2dnUVZ_jydnZ2d@giganews.com...
>>>
>>>>On Wed, 26 Dec 2007 11:18:56 -0500, Shirley wrote:
>>>>
>>>>>"mimus" wrote in message
>>>>>news:q56dnXjK9Lmw6O_anZ2dnUVZ_uevnZ2d@giganews.com...
>>>>>
>>>>>>I've been using gedit to text-search a readelf file-dump of my
>>>>>>libc-2.3.5.so C runtime library's .dynsym table to get the --start- and
>>>>>>--stop-addresses objdump needs to allow me to look at the assembly code
>>>>>>libc provides for the standard C library functions.
>>>>>>
>>>>>>This is bad.
>>>>>>
>>>>>>(And what idiot committee decided to put the start-addresses in hex and
>>>>>>the lengths of the snippets in decimal? twisted mofoes.)
>>>>>>
>>>>>>For example, here's the libc-2.3.5.so .dynsym line for the standard C
>>>>>>string function strcpy(), which copies a string into a new location:
>>>>>>
>>>>>>00066a8c 35 FUNC GLOBAL DEFAULT 11 strcpy@@GLIBC_2.0
>>>>>>
>>>>>>here's the resulting objdump command (I was in the /lib directory):
>>>>>>
>>>>>>objdump -d --no-show-raw-insn --start-address=0x00066a8c --stop-address=0x00066aaf
>>>>>>libc-2.3.5.so
>>>>>>
>>>>>>and here's the output of that command:
>>>>>>
>>>>>>libc-2.3.5.so: file format elf32-i386
>>>>>>
>>>>>>Disassembly of section .plt:
>>>>>>Disassembly of section .text:
>>>>>>
>>>>>>00066a8c :
>>>>>> 66a8c: push %ebp
>>>>>> 66a8d: mov %esp,%ebp
>>>>>> 66a8f: push %esi
>>>>>> 66a90: mov 0x8(%ebp),%esi
>>>>>> 66a93: mov 0xc(%ebp),%edx
>>>>>> 66a96: mov %esi,%eax
>>>>>> 66a98: sub %edx,%eax
>>>>>> 66a9a: lea 0xffffffff(%eax),%ecx
>>>>>> 66a9d: movzbl (%edx),%eax
>>>>>> 66aa0: add $0x1,%edx
>>>>>> 66aa3: test %al,%al
>>>>>> 66aa5: mov %al,(%edx,%ecx,1)
>>>>>> 66aa8: jne 66a9d
>>>>>> 66aaa: mov %esi,%eax
>>>>>> 66aac: pop %esi
>>>>>> 66aad: pop %ebp
>>>>>> 66aae: ret
>>>>>>
>>>>>>My eyes started watering last night and haven't stopped . . . .
>>>>>
>>>>>Speeds up process of finding mimus a girlfriend.
>>>>
>>>>Don't try to tamper with my budding relationship with Libby C. here,
>>>>woman.
>>>
>>>Who is Libby C.?

>>
>> She's just some chick.
>>
>>>Did someone send a memo out and I somehow missplaced mine?

>>
>> That happens to me all the time.
>>
>> The best was the time I was driving _through_ Ohio and _over the Great
>> River to_ West Virginia, and, like, the bridge was gone . . . .
>>

>
>The great disappearance of teh Silver Bridge between Point Pleasant and
>Gallipolis. I remember that. Caused the correction of the suspension
>systems of several bridges including the 'Chain Bridge' in Amesbury, Ma
>(over which I drive almost daily). I knew somebody whose aunt ended up
>in the drink (but otherwise not seriously hurt) as a result of riding
>the bridge to its demise.


I bet she and I are related. Really weird freak accidents only happen
to certain subsets of people, I've noticed.

0


#15 dave hillstrom

  • Group: Guests

Posted 29 December 2007 - 02:47 AM

On Thu, 27 Dec 2007 19:13:31 -0500, Sharon B wrote:

>On Wed, 26 Dec 2007 16:02:11 -0500, mixed nuts
> wrote in :
>
>>mimus wrote:
>>> On Wed, 26 Dec 2007 14:06:09 -0500, Shirley wrote:
>>>
>>>>"mimus" wrote in message
>>>>news:__Cdnekrbuc_Fe_anZ2dnUVZ_jydnZ2d@giganews.com...
>>>>
>>>>>On Wed, 26 Dec 2007 11:18:56 -0500, Shirley wrote:
>>>>>
>>>>>>"mimus" wrote in message
>>>>>>news:q56dnXjK9Lmw6O_anZ2dnUVZ_uevnZ2d@giganews.com...
>>>>>>
>>>>>>>I've been using gedit to text-search a readelf file-dump of my
>>>>>>>libc-2.3.5.so C runtime library's .dynsym table to get the --start- and
>>>>>>>--stop-addresses objdump needs to allow me to look at the assembly code
>>>>>>>libc provides for the standard C library functions.
>>>>>>>
>>>>>>>This is bad.
>>>>>>>
>>>>>>>(And what idiot committee decided to put the start-addresses in hex and
>>>>>>>the lengths of the snippets in decimal? twisted mofoes.)
>>>>>>>
>>>>>>>For example, here's the libc-2.3.5.so .dynsym line for the standard C
>>>>>>>string function strcpy(), which copies a string into a new location:
>>>>>>>
>>>>>>>00066a8c 35 FUNC GLOBAL DEFAULT 11 strcpy@@GLIBC_2.0
>>>>>>>
>>>>>>>here's the resulting objdump command (I was in the /lib directory):
>>>>>>>
>>>>>>>objdump -d --no-show-raw-insn --start-address=0x00066a8c --stop-address=0x00066aaf
>>>>>>>libc-2.3.5.so
>>>>>>>
>>>>>>>and here's the output of that command:
>>>>>>>
>>>>>>>libc-2.3.5.so: file format elf32-i386
>>>>>>>
>>>>>>>Disassembly of section .plt:
>>>>>>>Disassembly of section .text:
>>>>>>>
>>>>>>>00066a8c :
>>>>>>> 66a8c: push %ebp
>>>>>>> 66a8d: mov %esp,%ebp
>>>>>>> 66a8f: push %esi
>>>>>>> 66a90: mov 0x8(%ebp),%esi
>>>>>>> 66a93: mov 0xc(%ebp),%edx
>>>>>>> 66a96: mov %esi,%eax
>>>>>>> 66a98: sub %edx,%eax
>>>>>>> 66a9a: lea 0xffffffff(%eax),%ecx
>>>>>>> 66a9d: movzbl (%edx),%eax
>>>>>>> 66aa0: add $0x1,%edx
>>>>>>> 66aa3: test %al,%al
>>>>>>> 66aa5: mov %al,(%edx,%ecx,1)
>>>>>>> 66aa8: jne 66a9d
>>>>>>> 66aaa: mov %esi,%eax
>>>>>>> 66aac: pop %esi
>>>>>>> 66aad: pop %ebp
>>>>>>> 66aae: ret
>>>>>>>
>>>>>>>My eyes started watering last night and haven't stopped . . . .
>>>>>>
>>>>>>Speeds up process of finding mimus a girlfriend.
>>>>>
>>>>>Don't try to tamper with my budding relationship with Libby C. here,
>>>>>woman.
>>>>
>>>>Who is Libby C.?
>>>
>>> She's just some chick.
>>>
>>>>Did someone send a memo out and I somehow missplaced mine?
>>>
>>> That happens to me all the time.
>>>
>>> The best was the time I was driving _through_ Ohio and _over the Great
>>> River to_ West Virginia, and, like, the bridge was gone . . . .
>>>

>>
>>The great disappearance of teh Silver Bridge between Point Pleasant and
>>Gallipolis. I remember that. Caused the correction of the suspension
>>systems of several bridges including the 'Chain Bridge' in Amesbury, Ma
>>(over which I drive almost daily). I knew somebody whose aunt ended up
>>in the drink (but otherwise not seriously hurt) as a result of riding
>>the bridge to its demise.

>
>I bet she and I are related. Really weird freak accidents only happen
>to certain subsets of people, I've noticed.


but youre related to almost everyone in kentucky. i thought we had
established this.



--
dave hillstrom mhm15x4 zrbj



0


#16 mimus

  • Group: Guests

Posted 29 December 2007 - 02:47 AM

On Fri, 28 Dec 2007 19:04:01 -0500, dave hillstrom wrote:

> On Thu, 27 Dec 2007 19:13:31 -0500, Sharon B wrote:
>
>>On Wed, 26 Dec 2007 16:02:11 -0500, mixed nuts
>> wrote in :
>>
>>>mimus wrote:
>>>> On Wed, 26 Dec 2007 14:06:09 -0500, Shirley wrote:
>>>>
>>>>>"mimus" wrote in message
>>>>>news:__Cdnekrbuc_Fe_anZ2dnUVZ_jydnZ2d@giganews.com...
>>>>>
>>>>>>On Wed, 26 Dec 2007 11:18:56 -0500, Shirley wrote:
>>>>>>
>>>>>>>"mimus" wrote in message
>>>>>>>news:q56dnXjK9Lmw6O_anZ2dnUVZ_uevnZ2d@giganews.com...
>>>>>>>
>>>>>>>>I've been using gedit to text-search a readelf file-dump of my
>>>>>>>>libc-2.3.5.so C runtime library's .dynsym table to get the --start- and
>>>>>>>>--stop-addresses objdump needs to allow me to look at the assembly code
>>>>>>>>libc provides for the standard C library functions.
>>>>>>>>
>>>>>>>>This is bad.
>>>>>>>>
>>>>>>>>(And what idiot committee decided to put the start-addresses in hex and
>>>>>>>>the lengths of the snippets in decimal? twisted mofoes.)
>>>>>>>>
>>>>>>>>For example, here's the libc-2.3.5.so .dynsym line for the standard C
>>>>>>>>string function strcpy(), which copies a string into a new location:
>>>>>>>>
>>>>>>>>00066a8c 35 FUNC GLOBAL DEFAULT 11 strcpy@@GLIBC_2.0
>>>>>>>>
>>>>>>>>here's the resulting objdump command (I was in the /lib directory):
>>>>>>>>
>>>>>>>>objdump -d --no-show-raw-insn --start-address=0x00066a8c --stop-address=0x00066aaf
>>>>>>>>libc-2.3.5.so
>>>>>>>>
>>>>>>>>and here's the output of that command:
>>>>>>>>
>>>>>>>>libc-2.3.5.so: file format elf32-i386
>>>>>>>>
>>>>>>>>Disassembly of section .plt:
>>>>>>>>Disassembly of section .text:
>>>>>>>>
>>>>>>>>00066a8c :
>>>>>>>> 66a8c: push %ebp
>>>>>>>> 66a8d: mov %esp,%ebp
>>>>>>>> 66a8f: push %esi
>>>>>>>> 66a90: mov 0x8(%ebp),%esi
>>>>>>>> 66a93: mov 0xc(%ebp),%edx
>>>>>>>> 66a96: mov %esi,%eax
>>>>>>>> 66a98: sub %edx,%eax
>>>>>>>> 66a9a: lea 0xffffffff(%eax),%ecx
>>>>>>>> 66a9d: movzbl (%edx),%eax
>>>>>>>> 66aa0: add $0x1,%edx
>>>>>>>> 66aa3: test %al,%al
>>>>>>>> 66aa5: mov %al,(%edx,%ecx,1)
>>>>>>>> 66aa8: jne 66a9d
>>>>>>>> 66aaa: mov %esi,%eax
>>>>>>>> 66aac: pop %esi
>>>>>>>> 66aad: pop %ebp
>>>>>>>> 66aae: ret
>>>>>>>>
>>>>>>>>My eyes started watering last night and haven't stopped . . . .
>>>>>>>
>>>>>>>Speeds up process of finding mimus a girlfriend.
>>>>>>
>>>>>>Don't try to tamper with my budding relationship with Libby C. here,
>>>>>>woman.
>>>>>
>>>>>Who is Libby C.?
>>>>
>>>> She's just some chick.
>>>>
>>>>>Did someone send a memo out and I somehow missplaced mine?
>>>>
>>>> That happens to me all the time.
>>>>
>>>> The best was the time I was driving _through_ Ohio and _over the Great
>>>> River to_ West Virginia, and, like, the bridge was gone . . . .
>>>
>>>The great disappearance of teh Silver Bridge between Point Pleasant and
>>>Gallipolis. I remember that. Caused the correction of the suspension
>>>systems of several bridges including the 'Chain Bridge' in Amesbury, Ma
>>>(over which I drive almost daily). I knew somebody whose aunt ended up
>>>in the drink (but otherwise not seriously hurt) as a result of riding
>>>the bridge to its demise.

>>
>>I bet she and I are related. Really weird freak accidents only happen
>>to certain subsets of people, I've noticed.

>
> but youre related to almost everyone in kentucky. i thought we had
> established this.


Nah, it all gets compartmentalized by barriers between watersheds.

Or, in extreme eastern and southeastern Kentucky, which hill you were born
on.

>


When you've had the same four family names in the county for the last two
hundred years, it really doesn't matter what yer name is . . . .

--
tinmimus99@hotmail.com

smeeter 11 or maybe 12

mp 10

mhm 29x13

In the old time, there was love in the forest.

< _Where Is the Bird of Fire?_


0


#17 Dr Entropy

  • Group: Guests

Posted 29 December 2007 - 06:47 PM

On Wed, 26 Dec 2007 15:06:04 -0500, mimus blather'd thus:

> On Wed, 26 Dec 2007 14:48:41 -0500, Shirley wrote:
>
>
>> "mimus" wrote in message
>> news:4I-dnQl41K67Mu_anZ2dnUVZ_jydnZ2d@giganews.com...
>>> On Wed, 26 Dec 2007 14:06:09 -0500, Shirley wrote:
>>>
>>>> "mimus" wrote in message
>>>> news:__Cdnekrbuc_Fe_anZ2dnUVZ_jydnZ2d@giganews.com...
>>>>
>>>>> On Wed, 26 Dec 2007 11:18:56 -0500, Shirley wrote:
>>>>>
>>>>>> "mimus" wrote in message
>>>>>> news:q56dnXjK9Lmw6O_anZ2dnUVZ_uevnZ2d@giganews.com...
>>>>>>
>>>>>>> I've been using gedit to text-search a readelf file-dump of my
>>>>>>> libc-2.3.5.so C runtime library's .dynsym table to get the
>>>>>>> --start- and
>>>>>>> --stop-addresses objdump needs to allow me to look at the assembly
>>>>>>> code
>>>>>>> libc provides for the standard C library functions.
>>>>>>>
>>>>>>> This is bad.
>>>>>>>
>>>>>>> (And what idiot committee decided to put the start-addresses in
>>>>>>> hex and
>>>>>>> the lengths of the snippets in decimal? twisted mofoes.)
>>>>>>>
>>>>>>> For example, here's the libc-2.3.5.so .dynsym line for the
>>>>>>> standard C string function strcpy(), which copies a string into a
>>>>>>> new location:
>>>>>>>
>>>>>>> 00066a8c 35 FUNC GLOBAL DEFAULT 11 strcpy@@GLIBC_2.0
>>>>>>>
>>>>>>> here's the resulting objdump command (I was in the /lib
>>>>>>> directory):
>>>>>>>
>>>>>>> objdump -d --no-show-raw-insn --start-address=0x00066a8c
>>>>>>> --stop-address=0x00066aaf libc-2.3.5.so
>>>>>>>
>>>>>>> and here's the output of that command:
>>>>>>>
>>>>>>> libc-2.3.5.so: file format elf32-i386
>>>>>>>
>>>>>>> Disassembly of section .plt:
>>>>>>> Disassembly of section .text:
>>>>>>>
>>>>>>> 00066a8c :
>>>>>>> 66a8c: push %ebp
>>>>>>> 66a8d: mov %esp,%ebp
>>>>>>> 66a8f: push %esi
>>>>>>> 66a90: mov 0x8(%ebp),%esi
>>>>>>> 66a93: mov 0xc(%ebp),%edx
>>>>>>> 66a96: mov %esi,%eax
>>>>>>> 66a98: sub %edx,%eax
>>>>>>> 66a9a: lea 0xffffffff(%eax),%ecx 66a9d: movzbl
>>>>>>> (%edx),%eax
>>>>>>> 66aa0: add $0x1,%edx
>>>>>>> 66aa3: test %al,%al
>>>>>>> 66aa5: mov %al,(%edx,%ecx,1) 66aa8: jne 66a9d
>>>>>>> 66aaa: mov %esi,%eax
>>>>>>> 66aac: pop %esi
>>>>>>> 66aad: pop %ebp
>>>>>>> 66aae: ret
>>>>>>>
>>>>>>> My eyes started watering last night and haven't stopped . . . .
>>>>>>
>>>>>> Speeds up process of finding mimus a girlfriend.
>>>>>
>>>>> Don't try to tamper with my budding relationship with Libby C. here,
>>>>> woman.
>>>>
>>>> Who is Libby C.?
>>>
>>> She's just some chick.

>>
>> When the wedding bells ring...do I get an invitation?

>
> Sure.
>
>>>> Did someone send a memo out and I somehow missplaced mine?
>>>
>>> That happens to me all the time.
>>>
>>> The best was the time I was driving _through_ Ohio and _over the Great
>>> River to_ West Virginia, and, like, the bridge was gone . . . .

>>
>> What did you do?

>
>
>
> Parked and wandered out to where the road ended to smoke a cig or two
> and ponder.
>
> (That was after the "Holy fuck!" and head-clutching part.)


Didja offer th' mothmen a smoke?


--
Dr E--
mhm 17x1
SGM #3
smeeter #13
FWAC:"Old No.-7"
Surgeon General-Relativity
Commodore/Upper-Half/1st Virginia Volunteers/CEsium Brigade
NF & TCIB. ATFFFIQ
------------------------------------------------------------------------------
"The flames kindled on the fourth of July, seventeen hundred and
seventy six, have spread over too much of the globe to be extinguished
by the feeble engines of despotism." -- Thomas Jefferson

0


#18 mimus

  • Group: Guests

Posted 30 December 2007 - 10:47 AM

On Sat, 29 Dec 2007 15:28:26 +0000, Dr Entropy wrote:

> On Wed, 26 Dec 2007 15:06:04 -0500, mimus blather'd thus:
>
>> On Wed, 26 Dec 2007 14:48:41 -0500, Shirley wrote:
>>
>>
>>> "mimus" wrote in message
>>> news:4I-dnQl41K67Mu_anZ2dnUVZ_jydnZ2d@giganews.com...
>>>> On Wed, 26 Dec 2007 14:06:09 -0500, Shirley wrote:
>>>>
>>>>> "mimus" wrote in message
>>>>> news:__Cdnekrbuc_Fe_anZ2dnUVZ_jydnZ2d@giganews.com...
>>>>>
>>>>>> On Wed, 26 Dec 2007 11:18:56 -0500, Shirley wrote:
>>>>>>
>>>>>>> "mimus" wrote in message
>>>>>>> news:q56dnXjK9Lmw6O_anZ2dnUVZ_uevnZ2d@giganews.com...
>>>>>>>
>>>>>>>> I've been using gedit to text-search a readelf file-dump of my
>>>>>>>> libc-2.3.5.so C runtime library's .dynsym table to get the
>>>>>>>> --start- and
>>>>>>>> --stop-addresses objdump needs to allow me to look at the assembly
>>>>>>>> code
>>>>>>>> libc provides for the standard C library functions.
>>>>>>>>
>>>>>>>> This is bad.
>>>>>>>>
>>>>>>>> (And what idiot committee decided to put the start-addresses in
>>>>>>>> hex and
>>>>>>>> the lengths of the snippets in decimal? twisted mofoes.)
>>>>>>>>
>>>>>>>> For example, here's the libc-2.3.5.so .dynsym line for the
>>>>>>>> standard C string function strcpy(), which copies a string into a
>>>>>>>> new location:
>>>>>>>>
>>>>>>>> 00066a8c 35 FUNC GLOBAL DEFAULT 11 strcpy@@GLIBC_2.0
>>>>>>>>
>>>>>>>> here's the resulting objdump command (I was in the /lib
>>>>>>>> directory):
>>>>>>>>
>>>>>>>> objdump -d --no-show-raw-insn --start-address=0x00066a8c
>>>>>>>> --stop-address=0x00066aaf libc-2.3.5.so
>>>>>>>>
>>>>>>>> and here's the output of that command:
>>>>>>>>
>>>>>>>> libc-2.3.5.so: file format elf32-i386
>>>>>>>>
>>>>>>>> Disassembly of section .plt:
>>>>>>>> Disassembly of section .text:
>>>>>>>>
>>>>>>>> 00066a8c :
>>>>>>>> 66a8c: push %ebp
>>>>>>>> 66a8d: mov %esp,%ebp
>>>>>>>> 66a8f: push %esi
>>>>>>>> 66a90: mov 0x8(%ebp),%esi
>>>>>>>> 66a93: mov 0xc(%ebp),%edx
>>>>>>>> 66a96: mov %esi,%eax
>>>>>>>> 66a98: sub %edx,%eax
>>>>>>>> 66a9a: lea 0xffffffff(%eax),%ecx 66a9d: movzbl
>>>>>>>> (%edx),%eax
>>>>>>>> 66aa0: add $0x1,%edx
>>>>>>>> 66aa3: test %al,%al
>>>>>>>> 66aa5: mov %al,(%edx,%ecx,1) 66aa8: jne 66a9d
>>>>>>>> 66aaa: mov %esi,%eax
>>>>>>>> 66aac: pop %esi
>>>>>>>> 66aad: pop %ebp
>>>>>>>> 66aae: ret
>>>>>>>>
>>>>>>>> My eyes started watering last night and haven't stopped . . . .
>>>>>>>
>>>>>>> Speeds up process of finding mimus a girlfriend.
>>>>>>
>>>>>> Don't try to tamper with my budding relationship with Libby C. here,
>>>>>> woman.
>>>>>
>>>>> Who is Libby C.?
>>>>
>>>> She's just some chick.
>>>
>>> When the wedding bells ring...do I get an invitation?

>>
>> Sure.
>>
>>>>> Did someone send a memo out and I somehow missplaced mine?
>>>>
>>>> That happens to me all the time.
>>>>
>>>> The best was the time I was driving _through_ Ohio and _over the Great
>>>> River to_ West Virginia, and, like, the bridge was gone . . . .
>>>
>>> What did you do?

>>
>>
>>
>> Parked and wandered out to where the road ended to smoke a cig or two
>> and ponder.
>>
>> (That was after the "Holy fuck!" and head-clutching part.)

>
> Didja offer th' mothmen a smoke?


I think they hang around the suspension bridges mostly.

--
tinmimus99@hotmail.com

smeeter 11 or maybe 12

mp 10

mhm 29x13

"Ah*ooh*ah*ooh*ah*ooh*ah*ooh*ah."

< _Shaun of the Dead_



0


#19 Tim Weaver

  • Group: Guests

Posted 30 December 2007 - 06:47 PM

mimus wrote:

> On Sat, 29 Dec 2007 15:28:26 +0000, Dr Entropy wrote:
>
>> On Wed, 26 Dec 2007 15:06:04 -0500, mimus blather'd thus:
>>
>>> On Wed, 26 Dec 2007 14:48:41 -0500, Shirley wrote:
>>>
>>>
>>>> "mimus" wrote in message
>>>> news:4I-dnQl41K67Mu_anZ2dnUVZ_jydnZ2d@giganews.com...
>>>>> On Wed, 26 Dec 2007 14:06:09 -0500, Shirley wrote:
>>>>>
>>>>>> "mimus" wrote in message
>>>>>> news:__Cdnekrbuc_Fe_anZ2dnUVZ_jydnZ2d@giganews.com...
>>>>>>
>>>>>>> On Wed, 26 Dec 2007 11:18:56 -0500, Shirley wrote:
>>>>>>>
>>>>>>>> "mimus" wrote in message
>>>>>>>> news:q56dnXjK9Lmw6O_anZ2dnUVZ_uevnZ2d@giganews.com...
>>>>>>>>
>>>>>>>>> I've been using gedit to text-search a readelf file-dump of my
>>>>>>>>> libc-2.3.5.so C runtime library's .dynsym table to get the
>>>>>>>>> --start- and
>>>>>>>>> --stop-addresses objdump needs to allow me to look at the assembly
>>>>>>>>> code libc provides for the standard C library functions.
>>>>>>>>>
>>>>>>>>> This is bad.
>>>>>>>>>
>>>>>>>>> (And what idiot committee decided to put the start-addresses in
>>>>>>>>> hex and
>>>>>>>>> the lengths of the snippets in decimal? twisted mofoes.)
>>>>>>>>>
>>>>>>>>> For example, here's the libc-2.3.5.so .dynsym line for the
>>>>>>>>> standard C string function strcpy(), which copies a string into a
>>>>>>>>> new location:
>>>>>>>>>
>>>>>>>>> 00066a8c 35 FUNC GLOBAL DEFAULT 11 strcpy@@GLIBC_2.0
>>>>>>>>>
>>>>>>>>> here's the resulting objdump command (I was in the /lib
>>>>>>>>> directory):
>>>>>>>>>
>>>>>>>>> objdump -d --no-show-raw-insn --start-address=0x00066a8c
>>>>>>>>> --stop-address=0x00066aaf libc-2.3.5.so
>>>>>>>>>
>>>>>>>>> and here's the output of that command:
>>>>>>>>>
>>>>>>>>> libc-2.3.5.so: file format elf32-i386
>>>>>>>>>
>>>>>>>>> Disassembly of section .plt:
>>>>>>>>> Disassembly of section .text:
>>>>>>>>>
>>>>>>>>> 00066a8c :
>>>>>>>>> 66a8c: push %ebp
>>>>>>>>> 66a8d: mov %esp,%ebp
>>>>>>>>> 66a8f: push %esi
>>>>>>>>> 66a90: mov 0x8(%ebp),%esi
>>>>>>>>> 66a93: mov 0xc(%ebp),%edx
>>>>>>>>> 66a96: mov %esi,%eax
>>>>>>>>> 66a98: sub %edx,%eax
>>>>>>>>> 66a9a: lea 0xffffffff(%eax),%ecx 66a9d: movzbl
>>>>>>>>> (%edx),%eax 66aa0: add $0x1,%edx
>>>>>>>>> 66aa3: test %al,%al
>>>>>>>>> 66aa5: mov %al,(%edx,%ecx,1) 66aa8: jne 66a9d
>>>>>>>>> 66aaa: mov %esi,%eax
>>>>>>>>> 66aac: pop %esi
>>>>>>>>> 66aad: pop %ebp
>>>>>>>>> 66aae: ret
>>>>>>>>>
>>>>>>>>> My eyes started watering last night and haven't stopped . . . .
>>>>>>>>
>>>>>>>> Speeds up process of finding mimus a girlfriend.
>>>>>>>
>>>>>>> Don't try to tamper with my budding relationship with Libby C. here,
>>>>>>> woman.
>>>>>>
>>>>>> Who is Libby C.?
>>>>>
>>>>> She's just some chick.
>>>>
>>>> When the wedding bells ring...do I get an invitation?
>>>
>>> Sure.
>>>
>>>>>> Did someone send a memo out and I somehow missplaced mine?
>>>>>
>>>>> That happens to me all the time.
>>>>>
>>>>> The best was the time I was driving _through_ Ohio and _over the Great
>>>>> River to_ West Virginia, and, like, the bridge was gone . . . .
>>>>
>>>> What did you do?
>>>
>>>
>>>
>>> Parked and wandered out to where the road ended to smoke a cig or two
>>> and ponder.
>>>
>>> (That was after the "Holy fuck!" and head-clutching part.)

>>
>> Didja offer th' mothmen a smoke?

>
> I think they hang around the suspension bridges mostly.


Maybe they're been branching out.
--
Tim Weaver

I know you believe you understand what you think I said,
but I'm not sure you realize that what you heard is not
what I meant.

0


#20 Sharon B

  • Group: Guests

Posted 31 December 2007 - 02:47 AM

On Fri, 28 Dec 2007 19:13:13 -0500, mimus
wrote in :

>On Fri, 28 Dec 2007 19:04:01 -0500, dave hillstrom wrote:
>
>> On Thu, 27 Dec 2007 19:13:31 -0500, Sharon B wrote:
>>
>>>On Wed, 26 Dec 2007 16:02:11 -0500, mixed nuts
>>> wrote in :
>>>
>>>>mimus wrote:
>>>>> On Wed, 26 Dec 2007 14:06:09 -0500, Shirley wrote:
>>>>>
>>>>>>"mimus" wrote in message
>>>>>>news:__Cdnekrbuc_Fe_anZ2dnUVZ_jydnZ2d@giganews.com...
>>>>>>
>>>>>>>On Wed, 26 Dec 2007 11:18:56 -0500, Shirley wrote:
>>>>>>>
>>>>>>>>"mimus" wrote in message
>>>>>>>>news:q56dnXjK9Lmw6O_anZ2dnUVZ_uevnZ2d@giganews.com...
>>>>>>>>
>>>>>>>>>I've been using gedit to text-search a readelf file-dump of my
>>>>>>>>>libc-2.3.5.so C runtime library's .dynsym table to get the --start- and
>>>>>>>>>--stop-addresses objdump needs to allow me to look at the assembly code
>>>>>>>>>libc provides for the standard C library functions.
>>>>>>>>>
>>>>>>>>>This is bad.
>>>>>>>>>
>>>>>>>>>(And what idiot committee decided to put the start-addresses in hex and
>>>>>>>>>the lengths of the snippets in decimal? twisted mofoes.)
>>>>>>>>>
>>>>>>>>>For example, here's the libc-2.3.5.so .dynsym line for the standard C
>>>>>>>>>string function strcpy(), which copies a string into a new location:
>>>>>>>>>
>>>>>>>>>00066a8c 35 FUNC GLOBAL DEFAULT 11 strcpy@@GLIBC_2.0
>>>>>>>>>
>>>>>>>>>here's the resulting objdump command (I was in the /lib directory):
>>>>>>>>>
>>>>>>>>>objdump -d --no-show-raw-insn --start-address=0x00066a8c --stop-address=0x00066aaf
>>>>>>>>>libc-2.3.5.so
>>>>>>>>>
>>>>>>>>>and here's the output of that command:
>>>>>>>>>
>>>>>>>>>libc-2.3.5.so: file format elf32-i386
>>>>>>>>>
>>>>>>>>>Disassembly of section .plt:
>>>>>>>>>Disassembly of section .text:
>>>>>>>>>
>>>>>>>>>00066a8c :
>>>>>>>>> 66a8c: push %ebp
>>>>>>>>> 66a8d: mov %esp,%ebp
>>>>>>>>> 66a8f: push %esi
>>>>>>>>> 66a90: mov 0x8(%ebp),%esi
>>>>>>>>> 66a93: mov 0xc(%ebp),%edx
>>>>>>>>> 66a96: mov %esi,%eax
>>>>>>>>> 66a98: sub %edx,%eax
>>>>>>>>> 66a9a: lea 0xffffffff(%eax),%ecx
>>>>>>>>> 66a9d: movzbl (%edx),%eax
>>>>>>>>> 66aa0: add $0x1,%edx
>>>>>>>>> 66aa3: test %al,%al
>>>>>>>>> 66aa5: mov %al,(%edx,%ecx,1)
>>>>>>>>> 66aa8: jne 66a9d
>>>>>>>>> 66aaa: mov %esi,%eax
>>>>>>>>> 66aac: pop %esi
>>>>>>>>> 66aad: pop %ebp
>>>>>>>>> 66aae: ret
>>>>>>>>>
>>>>>>>>>My eyes started watering last night and haven't stopped . . . .
>>>>>>>>
>>>>>>>>Speeds up process of finding mimus a girlfriend.
>>>>>>>
>>>>>>>Don't try to tamper with my budding relationship with Libby C. here,
>>>>>>>woman.
>>>>>>
>>>>>>Who is Libby C.?
>>>>>
>>>>> She's just some chick.
>>>>>
>>>>>>Did someone send a memo out and I somehow missplaced mine?
>>>>>
>>>>> That happens to me all the time.
>>>>>
>>>>> The best was the time I was driving _through_ Ohio and _over the Great
>>>>> River to_ West Virginia, and, like, the bridge was gone . . . .
>>>>
>>>>The great disappearance of teh Silver Bridge between Point Pleasant and
>>>>Gallipolis. I remember that. Caused the correction of the suspension
>>>>systems of several bridges including the 'Chain Bridge' in Amesbury, Ma
>>>>(over which I drive almost daily). I knew somebody whose aunt ended up
>>>>in the drink (but otherwise not seriously hurt) as a result of riding
>>>>the bridge to its demise.
>>>
>>>I bet she and I are related. Really weird freak accidents only happen
>>>to certain subsets of people, I've noticed.

>>
>> but youre related to almost everyone in kentucky. i thought we had
>> established this.

>
>Nah, it all gets compartmentalized by barriers between watersheds.
>
>Or, in extreme eastern and southeastern Kentucky, which hill you were born
>on.
>
>>

>
>When you've had the same four family names in the county for the last two
>hundred years, it really doesn't matter what yer name is . . . .


This is true. Apparently the Cox family (the blue people) intersected
my family line in the late 1800s, making me the most patriotic of
'netters - red, white and blue.

But if anyone calls me 'Old Glory', I'm gonna bite off their nose.

0

Share this topic:


  • (2 Pages)
  • +
  • 1
  • 2
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users


IPB Skins by Skinbox

Enter your sign in name and password


Sign in options
Log in with Facebook Log in with Twitter Log in with OpenID Log in with Windows Live   Or sign in with these services