[已截止]T恤设计征集

出售Ubuntu相关T恤/Polo衫/秋衣/帽子/贴纸/DVD光盘等

喜欢哪一种?

投票结束于 2007-04-04 0:38

第一种,简单不张扬
153
73%
第二种,前后大图或多文字,张扬
58
27%
 
总计票数: 211
ray82
帖子: 36
注册时间: 2007-02-28 16:19
来自: 上海

#46

帖子 ray82 » 2007-04-06 17:09

看起来好像不够炫啊,就一种样式好像也有些单调!
lv241
帖子: 3
注册时间: 2007-03-10 21:21

#47

帖子 lv241 » 2007-04-06 22:28

第一个好些
porsche
帖子: 9
注册时间: 2006-12-18 17:43

#48

帖子 porsche » 2007-04-07 18:23

炫一些,linux users或者developers都是这个世界上最炫的
一木
帖子: 75
注册时间: 2007-03-24 18:41
来自: 中国民航大学

#49

帖子 一木 » 2007-04-07 22:16

第一个
喜欢 圆领
不喜欢 有 反领的
gzd900
帖子: 176
注册时间: 2005-12-14 4:37
来自: 十堰
联系:

#50

帖子 gzd900 » 2007-04-08 1:23

选第一个!
shenme888
帖子: 45
注册时间: 2006-08-20 21:45

#51

帖子 shenme888 » 2007-04-08 18:49

我也感觉第一个好些,素淡一些。图片我感觉选的不怎么样,太俗气
头像
millenniumdark
论坛版主
帖子: 4159
注册时间: 2005-07-02 14:41
系统: Ubuntu 14.04 (Kylin)
联系:

#52

帖子 millenniumdark » 2007-04-08 19:38

低调,要低调
头像
tpli
帖子: 250
注册时间: 2007-01-16 16:14
来自: 郑州

#53

帖子 tpli » 2007-04-08 20:33

字大点好啊

但是别有图片就好了
iamgfy
帖子: 1
注册时间: 2007-03-12 23:21

#54

帖子 iamgfy » 2007-04-09 11:38

什么时候能买到最关心~
zp911_0
帖子: 1
注册时间: 2007-04-09 19:39

#55

帖子 zp911_0 » 2007-04-09 19:45

还是第一种比较好
头像
Beetle
帖子: 1637
注册时间: 2005-10-14 16:55
系统: OS X
来自: 江苏
联系:

#56

帖子 Beetle » 2007-04-09 20:01

背面加一段codes最好了!比如缓冲区溢出的最经典文章:《Smashing The Stack For Fun And Profit》

代码: 全选

.oO Phrack 49 Oo.

                         Volume Seven, Issue Forty-Nine

                                 File 14 of 16

                     BugTraq, r00t, and Underground.Org
                                  bring you

                    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
                    Smashing The Stack For Fun And Profit
                    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

                                by Aleph One
                            aleph1@underground.org

`smash the stack` [C programming] n. On many C implementations
it is possible to corrupt the execution stack by writing past
the end of an array declared auto in a routine.  Code that does
this is said to smash the stack, and can cause return from the
routine to jump to a random address.  This can produce some of
the most insidious data-dependent bugs known to mankind.
Variants include trash the stack, scribble the stack, mangle
the stack; the term mung the stack is not used, as this is
never done intentionally. See spam; see also alias bug,
fandango on core, memory leak, precedence lossage, overrun screw.


                                Introduction
                                ~~~~~~~~~~~~

  Over the last few months there has been a large increase of buffer
overflow vulnerabilities being both discovered and exploited.  Examples
of these are syslog, splitvt, sendmail 8.7.5, Linux/FreeBSD mount, Xt
library, at, etc.  This paper attempts to explain what buffer overflows
are, and how their exploits work.

  Basic knowledge of assembly is required.  An understanding of virtual
memory concepts, and experience with gdb are very helpful but not necessary.
We also assume we are working with an Intel x86 CPU, and that the operating
system is Linux.

  Some basic definitions before we begin: A buffer is simply a contiguous
block of computer memory that holds multiple instances of the same data
type.  C programmers normally associate with the word buffer arrays. Most
commonly, character arrays.  Arrays, like all variables in C, can be
declared either static or dynamic.  Static variables are allocated at load
time on the data segment.  Dynamic variables are allocated at run time on
the stack. To overflow is to flow, or fill over the top, brims, or bounds.
We will concern ourselves only with the overflow of dynamic buffers, otherwise
known as stack-based buffer overflows.


                         Process Memory Organization
                         ~~~~~~~~~~~~~~~~~~~~~~~~~~~

  To understand what stack buffers are we must first understand how a
process is organized in memory.  Processes are divided into three regions:
Text, Data, and Stack.  We will concentrate on the stack region, but first
a small overview of the other regions is in order.

  The text region is fixed by the program and includes code (instructions)
and read-only data.  This region corresponds to the text section of the
executable file.  This region is normally marked read-only and any attempt to
write to it will result in a segmentation violation.

  The data region contains initialized and uninitialized data.  Static
variables are stored in this region.  The data region corresponds to the
data-bss sections of the executable file.  Its size can be changed with the
brk(2) system call.  If the expansion of the bss data or the user stack
exhausts available memory, the process is blocked and is rescheduled to
run again with a larger memory space. New memory is added between the data
and stack segments.

                            /------------------\  lower
                            |                  |  memory
                            |       Text       |  addresses
                            |                  |
                            |------------------|
                            |   (Initialized)  |
                            |        Data      |
                            |  (Uninitialized) |
                            |------------------|
                            |                  |
                            |       Stack      |  higher
                            |                  |  memory
                            \------------------/  addresses

                        Fig. 1 Process Memory Regions


                              What Is A Stack?
                              ~~~~~~~~~~~~~~~~

  A stack is an abstract data type frequently used in computer science.  A
stack of objects has the property that the last object placed on the stack
will be the first object removed.  This property is commonly referred to as
last in, first out queue, or a LIFO.

  Several operations are defined on stacks.  Two of the most important are
PUSH and POP.  PUSH adds an element at the top of the stack.  POP, in
contrast, reduces the stack size by one by removing the last element at the
top of the stack.


                           Why Do We Use A Stack?
                           ~~~~~~~~~~~~~~~~~~~~~~

  Modern computers are designed with the need of high-level languages in
mind.  The most important technique for structuring programs introduced by
high-level languages is the procedure or function.  From one point of view, a
procedure call alters the flow of control just as a jump does, but unlike a
jump, when finished performing its task, a function returns control to the
statement or instruction following the call.  This high-level abstraction
is implemented with the help of the stack.

The stack is also used to dynamically allocate the local variables used in
functions, to pass parameters to the functions, and to return values from the
function. 
关键就是文章的格式!他们的格式是他们的"传世招牌"
dreamyfish
帖子: 79
注册时间: 2007-01-29 11:24

#57

帖子 dreamyfish » 2007-04-10 10:43

怎么购买啊~~ 喜欢第一种带领子的
csust
帖子: 41
注册时间: 2006-12-29 12:16

#58

帖子 csust » 2007-04-10 22:09

it is very good!
but now i see it in www.taobao.com ??why??
fufay
帖子: 46
注册时间: 2007-01-17 0:08

#59

帖子 fufay » 2007-04-10 22:26

关心什么时候能买到啊???
zxkj2006
帖子: 1
注册时间: 2007-04-11 13:06

#60

帖子 zxkj2006 » 2007-04-11 13:15

第一种,低调而不张扬!
回复