@# Quotes DB     useful, funny, interesting





Google
 
Web www.quotesdb.info
Undernet  |  EFnet  |  Quakenet  |  Freenode  |  Dalnet  |  Ircnet  |  Galaxynet
Page: 1 2 3 4 5 6



Comments:

<0> nah i dont recall seeing it
<0> it's not something i look for in a movie
<1> that's called cognitive defense
<0> but i guess we see where the trends change
<1> you're in denial
<2> people see what's important to them
<1> you saw a package and you can't beleive it
<2> it's nothing abnormal
<0> rmah very true
<1> hehe
<3> rather sounds like another attempt at american revision of history
<1> dont forget to add jewish propaganda
<3> true - it is a speilberg movie, after all
<1> well if you knew what you were talking about then it would be better you know....
<3> oh - you saying that it
<3> s *not* a speilberg movie?



<1> how could a mostly fictious movie be a revision of history?
<0> YuppieScm quant just went there to see the men
<0> in his defense, he doesn't know who wrote it
<0> quant is just too easy to pick on
<0> hehe :)
<1> oh yea, playing 70's news footage is revision is history
<2> heh, so true
<3> Quant : because moist people won't realise it's fiction
<3> er, most people
<2> YuppieScm: which parts were fictional?
<3> most americans
<1> did you watch the movie?
<2> the isrealis *did* actually sanction two operations to ***inate terrorists after the Munich incident
<1> the fact that 9 of 11 were killing by israel no one is denying
<1> probably so
<1> but that there was a team of 5 people
<2> um, only 2 of the terrorists involved in the Munich incident survived
<1> and all that crap, it's all fiction
<2> the rest died
<2> in Munich
<1> rmah, they were killing people that were involved indirectly
<1> people who planned, not acted out
<2> no wait, 3 survived. my bad.
<2> that could be hundreds
<1> ok go argue with them
<2> with who?
<1> with israel
<1> tell them about the other 90 that they missed
<2> ok
<2> my current "boss" is actually an ex-Isreali IDF intelligence officer
<1> Yuppie: the movie was more to the side of "it's not right to avenge" than anything else
<2> there are, in fact, a bunch of ex-IDF guys in my office
<1> and that Palestinians need their home
<1> hehe
<2> That's silly, vengence is great
<1> what about PLO? do you hang with those?
<2> for example, we koreans will take vengence agains the japanese for the invasion of 1592 and 1910
<2> people have long memories
<2> Quant: none of the palastinians I know are members of the PLO, as far as I know
<1> rmah: prolly 80% :)
<1> how do you take vengence?
<2> with patience
<1> how's that
<2> patiently
<2> thank you arrakis
<4> np
<1> nothing changed since the 70's
<1> it's weird
<0> rmah is korean?
<1> North Korean to be exact :)
<0> that's why he lives in new york
<0> it all makes sense
<1> exile
<0> and the butchers' shops..
<1> rmah cooks cats
<1> good stuff
<0> no dogs
<0> :/
<2> not just any cat will do
<0> little korean market in down town new york



<2> you have to be picky, the orange ones especailly are sort of stringy and greasy
<1> eeew
<2> exactly
<2> blech
<1> rmah
<0> rmah likes siamese
<1> give me a good tech recruiter
<2> will you give me a commission?
<0> lol
<0> rmah is jewish in heart
<1> you're not the recruiter right?
<2> no
<4> rmah is mah recruiter
<2> I want a comission for hooking you up
<4> he recruits young underage women for me :D
<1> darken: everyone is cheap, no one wants to admit it
<4> pfft
<2> hey man, they all told me they were 18!
<4> im ****ing cheap
<4> and im ****ing willinb to admit it
<2> should I ask for ID? I mean, jesus
<4> yeah rmah its cool. wells tick to that story
<4> wtick
<4> stick even
<1> rmah wuda take the bait
<4> jailbait?
<4> like i said, i sweear theysaid theywere 18
<2> and I swear, the older you get, the better 18 yr old girls look
<4> hehe
<2> it's true man
<0> it is just your eye vision
<0> :(
<3> nah - 18-yo girls always looked good
<3> http://www.break.com/superbowl/bannedbudlight.html
<5> Hello everyone
<6> well hello again
<0> haha YuppieScm
<7> Hi can postgresql store strings that are automatically crypted?
<7> (for storing p***words for use with pam-pgsql?)
<3> Jesper_ : nfi - did you look in the documentation?
<7> i searced postgresl website for type, and googling gave me the impression that normally you would have to crypt the p***word self, and the insert it to the db
<7> e.g postgresql cannot crypt string on its own??
<3> Jesper_ : if you need info about a specific feature on a specific implimentation of sql, you should look to the channel that support it. this channel is (ideally) for generic sql
<3> that said - ansi-standard sql does not support a modifier/attribute for any field to encrypt the contents
<7> thanks
<3> further, i would recommend using your own one-way hash for p***word storage
<3> rather than encrypting the value
<3> as it helps mitigate against sql injection attacks
<3> because you hash the value in the client app, then use it in sql to compare to the hased value in the table
<3> so no amount of tricksky ' or ( and 1=1)' bollocks will compromise your app
<3> when i do this ****, i also store a hash of the username - as well as the plain text - in the user table
<3> so that both of the data entries from the unknown user are hashed before they hit the db
<3> then there's no way on this earth that they'll be able to spoof a login by crafting an injection into the freeform login fields
<3> Jesper_ : you're welcome
<2> hi hos
<1> ho ho ho
<3> yo-ho-ho
<0> YuppieScm
<0> that's very wrong
<0> sql injection can byp*** security checks such as string comparisons
<0> where input = hash or 1 = 1
<0> hMM
<3> not if the client-side hashes the data before including it in the sql string
<0> then you're relying on client side security
<0> which is the whole problem
<0> that -allows- vulnerabilities such as sql injection
<3> no
<3> it depends what you define as client
<0> client is client
<3> hashing in a web page would be bad
<3> hashing in middle-ware is fine - middleware is still a client to the sql engine
<0> you're just making up terms now
<0> it is either done on the client or the server
<0> client server arch.


Name:

Comments:

Please enter the result of the sum 63 + 46 (to avoid spam):






Return to #sql
or
Go to some related logs:

#politics
steam connection reset by pear
evdince criminals
#windowsxp
efnet mp3 reggae channel
#beginner
#nhl
rick jenerette quotes
chestmaninternational
cockfuck



Home  |  disclaimer  |  contact  |  submit quotes