Displaying 20 results from an estimated 200 matches similar to: "Email Obfuscation Techniques"
2011 Jun 06
9
fried fish, available, for free
i've released the first beta of my e-book converter-tool.
you are invited to throw stones at it (and at me) if you like:
> http://jaguarps.com
"beta" is a compromise. i developed it on a mac, so that
particular version is solid. but "alpha" would be a better
label for the status of the windows and linux versions, so
if you have one of _those_ machines, and you
2011 Feb 01
2
Enabeling E-Mail Name
Dear readers,
of the Markdown-(Extra)-Discussion list. After including Markdown as the Markup language of choice for my
configuration files I stumbled over a feature I was missing: Adding e-mail links with names. I came up with a
little hack I want to share with you.
Old Syntax: (mailto:$mailadress@$mailhost)
New Syntax: (mailto:$mailadress@$mailhost[ My Name)
changes:
1) function
2009 Oct 22
3
Order of Markdown and SmartyPants filters (was: Re: Markdown Support in Drupal6.14?)
2009/10/20 Lou Quillio <public at quillio.com>
> On Mon, Oct 19, 2009 at 3:20 PM, AJG Baeumel
> <ajgb at st-maurices.n-lanark.sch.uk> wrote:
> > Why is Marksmarty no longersupported in Drupal 6.14?
>
> It's been a while since I've worked with Drupal, but I remember that
> MarkSmarty was really just a hybrid convenience filter. It's better to
> apply
2007 Aug 03
2
Bug: Code block after list
Maybe this has been reported before, but I can't find it in the
archives.
A code block immediately following an ordered or unordered list
breaks both the list and the code block. Badly.
Tab or spaces for the block don't matter, legal indentation variants
of the list don't matter. Tried a bunch of casual workarounds,
extra newlines, etc., but no joy. Needs explicit
2011 Nov 30
3
Inline HTML legalities
Hi,
I'm writing a Markdown Parser in Scheme by porting bits of Markdown.pl.
As you're probably aware, the Perl version massages the file into the
final output with a number of regexes. In my version I'm trying to use
the regexes to detect the starts and ends of the features and then take
specific action to emit the final representation. I'm doing it this way
because I want to
2012 Jun 22
6
Definition list as image caption
recently though about image captions, then i realized that this could be achiebed by Markdown Extra's definition list feature:
![alttext](http://exampl.com/img.jpg)
: here goes the *caption*
What do you think?
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2007 Jun 12
1
Captcha, account verification in RoR
I am creating a Ruby on Rails site and am curious about the best way to
stop spam on the site. For account creation there is:
a) Captcha
b) email verification
For messages, forums I am sure you could try to check the message for
any weird characters or typical spam phrases. I saw in the other post
there is the hivelogic email enkoder for hiding email addresses for
protecting email addresses. I
2007 Oct 12
2
Nested lists and blank lines
I have recently begun using Markdown + PHP Md Extra + SmartyPants in
the Symphony XML-based CMS. I'm not sure if this is a Symphony
question, or one that can be answered here. I hope someone will tell
me. :) I've done my best to find an answer in the online
documentation, but drawn a blank.
When I use nested lists -- it doesn't matter whether <ol> or <ul>,
there is always
2010 Jul 22
5
markdown do not support Strikethrough ?
I am using indefero,and its wiki use markdown as wiki syntax,and I found that
markdown do not support Strikethrough ?
Thanks!
2016 Dec 06
1
Spam messages
I agree that no action should be taken.
It's somewhat mystifying that the robot known as "Amy Kristen"
responds so quickly after my post, and with such regularity (so far
twice per hour), using perhaps several email addresses - and using the
correct "Reply-To" headers. But more mystifying is that she keeps the
same name the whole time. And lucky, I guess, because otherwise
2016 Dec 06
2
Spam messages
The problem is not specific to this list. Any kind of public
list may mean that other subscribers (or even the whole world)
can see your email address. So whenever you mail to a (public)
list there is a good chance that afterwards, you will get more
spam. Not really much can be done about it, at least not on
the side of the list, since any of the subscribers may be a
spammer, who can know...
All
2009 Jun 07
17
ActiveRecord Classes
I''m having a little trouble with understanding how to work out the
schematic for some of my classes using ActiveRecord when a file is in my
lib directory:
Brief example:
Here''s the outline of the files in use:
....app
........controllers
............application_controller.rb
............rushing_offenses_controller.rb
........models
............rushing_offense.rb
....lib
2000 Jul 26
3
Next Vorbis beta, MPEG+ enkoder
Hi.
When can we expect the next beta version of Vorbis encoder (with some
tagging & encoding options I hope)?
Also, today I tested MPEG+ encoder which you can download from
http://www.stud.uni-hannover.de/user/73884/mppenc.zip (win encoder)
http://www.stud.uni-hannover.de/user/73884/in_mpp.zip (winamp plug-in)
http://www.stud.uni-hannover.de/user/73884/mppdec.zip (win decoder)
It sounds
2007 Dec 13
0
[LLVMdev] Obfuscation Transformations Clobbered by Unkown Optimizations
Hello, Matt.
> Does anybody know what pass is clobbering my obfuscations?
I think this is DAG combiner machinery in the codegenerator itself. Try
to provide -fast option to llc.
--
With best regards, Anton Korobeynikov.
Faculty of Mathematics & Mechanics, Saint Petersburg State University.
2009 Feb 20
0
[LLVMdev] Obfuscation/software watermarking backend
I'd like to know if there is any known project doing obfucated code
generation or software watermarking in LLVM.
The [obfucation/software watermarking] in machine instruction level usually
requires to insert dead code, constant "unfolding", computationally
intensive "opaque predicate", redundant calculation, duplicated calculation,
etc, which all make the program
2007 Dec 14
0
[LLVMdev] Obfuscation Transformations Clobbered by Unkown Optimizations
On Thu, 13 Dec 2007, Matt Fredrikson wrote:
> After I run opt on an un-obfuscated bitcode file to produce an
> obfuscated bitcode file, I verify that my transformations were placed
ok
> in the file using llvm-dis. At this point, the changes appear to have
> been made. However, if I run the obfuscated bitcode file through llc
> to produce x86 assembly, the obfuscations vanish. I
2007 Dec 14
0
[LLVMdev] Obfuscation Transformations Clobbered by Unkown Optimizations
Matt,
The LLVMCore library provides constant folding automatically. So, when
your obfuscated module is read in and the assembler re-creates your
constants, the arithmetic is done automatically and the constants are
folded. To see where this is done, see lib/VMCore/ConstantFold.cpp
Reid.
On Thu, 2007-12-13 at 02:22 -0600, Matt Fredrikson wrote:
> Hello all,
>
> I am implementing some
2007 Jul 25
0
Being a polite client: maintaining history
Hi, folks.
I''m investigating libraries to use in a rather specialized feed
reader. Some of the sites I want to follow don''t have RSS feeds (or
have hopelessly broken feeds) so I was already planning on using
Hpricot anyway -- Mechanize is looking good, here.
In my research for my project, recipe 11.16 in O''Reilly''s Ruby
Cookbook references a website[1]
2016 Dec 06
0
Spam messages
Hi,
This topic has come up previously, across the R e-mail lists and the spammers need not be subscribers (but could be), but simply reasonably competent HTML scrapers.
If you look at the online archives of the R lists, for example R-Devel for this month:
https://stat.ethz.ch/pipermail/r-devel/2016-December/thread.html <https://stat.ethz.ch/pipermail/r-devel/2016-December/thread.html>
2006 Nov 13
4
Mass filtering page content for javascript anti-spam script
Hi all,
I''d like to write a function that replaces all email addresses in my
pages with a javascript anti-spam script. I know it''s a bit horrible
for screen readers, but I feel it''s our best option at the moment.
I think I need some kind of function that builds the javascript
depending on the email address and then replaces it in the text. I got
a bit lost at this