Account Options

  1. Sign in
The old Google Groups will be going away soon.
Switch to the new Google Groups.
Google Groups Home
« Groups Home
ASCII-Krützel
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  5 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Daniela Wagner  
View profile   Translate to Translated (View Original)
 More options Mar 16 2003, 1:22 pm
Newsgroups: de.admin.net-abuse.mail
From: VZQIJBDJM...@spammotel.com (Daniela Wagner)
Date: 16 Mar 2003 10:22:46 -0800
Local: Sun, Mar 16 2003 1:22 pm
Subject: ASCII-Krützel
Hallo Gruppe,

kann mir jemand einen Tipp geben, wie man so ASCII-Krützel (z.b.
[....]%40%5DFDC%5C%18M%11%0BOQT%11%19Q%18Q%16D%5DkFCX%5CW%1D%11%19%12%19[.. ..])
aus JavaScripts in Spam in ein lesbares Format bringen kann, ohne
jedes Zeichen einzeln nachschlagen und übersetzen zu müssen?
Ich hab's mit unencode versucht, dann kommt aber nur <html></html>
dabei raus.
Gibt's dar nicht ein Toll oder einen Editor der sowas kann?
Bin für jeden Tipp dankbar.

Daniela


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Hatto von Hatzfeld  
View profile   Translate to Translated (View Original)
 More options Mar 16 2003, 2:35 pm
Newsgroups: de.admin.net-abuse.mail
From: Hatto von Hatzfeld <ha...@salesianer.de>
Date: Sun, 16 Mar 2003 20:34:44 +0100
Local: Sun, Mar 16 2003 2:34 pm
Subject: Re: ASCII-Krützel
Daniela Wagner <VZQIJBDJM...@spammotel.com> schrieb:

> kann mir jemand einen Tipp geben, wie man so ASCII-Krützel (z.b.
> [....]%40%5DFDC%5C%18M%11%0BOQT%11%19Q%18Q%16D%5DkFCX%5CW%1D%11%19%12%19[.. ..])
> aus JavaScripts in Spam in ein lesbares Format bringen kann, ohne
> jedes Zeichen einzeln nachschlagen und übersetzen zu müssen?
> Ich hab's mit unencode versucht, dann kommt aber nur <html></html>
> dabei raus.
> Gibt's dar nicht ein Toll oder einen Editor der sowas kann?

Erstelle Dir diese HTML-Datei:

<html>
<head><title>(un)escape</title>
<SCRIPT LANGUAGE="Javascript">
function E() { var Text=escape(document.f1.textfeld.value);
  document.f1.textfeld.value=Text; }
function U() { var Text=unescape(document.f1.textfeld.value);
  document.f1.textfeld.value=Text; }
</SCRIPT>
</head>
<body>
<h1>Umwandlung per (un)escape</h1>
<form name="f1">
<textarea cols="80" rows="28" name="textfeld"></textarea><br>
<input type="button" value="escape" onclick="E()"> &nbsp;
<input type="button" value="unescape" onclick="U()">
</form>
</body>
</html>

und öffne sie mit einem javascriptfähigen Browser.

Oder erstelle Dir diese Perl-Datei:

#!/usr/bin/perl -w

if($#ARGV==1) {
  $infile=$ARGV[0];
  $outfile=$ARGV[1];
  if(!-r $infile) { die("Cannot read $infile\n"); }
  open(INFILE,$infile) || die("Could not read $infile\n");
  open(OUTFILE,'> '.$outfile) || die("Could not write $outfile\n");
  flock(INFILE,1);
  flock(OUTFILE,2);
  while(defined($zeile=<INFILE>)) {
    $zeile=~s/%([A-F0-9][A-F0-9])/chr(hex $1)/ge;
    print OUTFILE $zeile;
  }
  flock(OUTFILE,8);
  close(OUTFILE);
  flock(INFILE,8);
  close(INFILE);

}

else {
  print STDOUT "Syntax: unescape.pl infile outfile\n";

}

und nutze Sie wie bei Syntax angegeben. Auch hier brauchst Du natürlich
einen Interpreter.

Solltest Du dann noch auf "JScript.Encode" treffen, dann findest Du das
Nötige auf http://www.virtualconspiracy.com/scrdec.html

Ciao,
Hatto

--
"Besser eine Ohrfeige von einem Weisen, als der Kuss eines Narren."
(Jüdisches Sprichwort)


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bodo Eggert  
View profile   Translate to Translated (View Original)
 More options Mar 16 2003, 3:03 pm
Newsgroups: de.admin.net-abuse.mail
From: Bodo Eggert <7egg...@nurfuerspam.de>
Date: Sun, 16 Mar 2003 20:31:57 +0100
Local: Sun, Mar 16 2003 2:31 pm
Subject: Re: ASCII-Krützel

Daniela Wagner <VZQIJBDJM...@spammotel.com> wrote:
> kann mir jemand einen Tipp geben, wie man so ASCII-Krützel (z.b.

[....]%40%5DFDC%5C%18M%11%0BOQT%11%19Q%18Q%16D%5DkFCX%5CW%1D%11%19%12%19[.. ..])

> aus JavaScripts in Spam in ein lesbares Format bringen kann, ohne
> jedes Zeichen einzeln nachschlagen und übersetzen zu müssen?

Das sieht mir nach URL-Encodierten Strings aus, die per Javascript zusätzlich
codiert sind. Mein einfacher Decoder unter 7eggert.de.vu/url_decode.html
kann Dir da leider nicht helfen.

Unter http://www.mozilla.org/js/spidermonkey gibt es eine Javascript-Engine,
die man jedoch mit angepaßtem Script beschicken muß (print statt
document.write). Besonders lästig ist die Eigenschaft, den eingegebenen
Javascript-Code zu beautifizieren, da selbstprüfender Code somit nicht ohne
weitere Modifizierung läuft.
--
Warren's Regel:
  Willst du den Fachmann herausfinden, nimm den, der die meiste
  Zeit braucht und die höchsten Kosten für eine Sache voraussagt.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Guido Purper  
View profile   Translate to Translated (View Original)
 More options Mar 16 2003, 4:22 pm
Newsgroups: de.admin.net-abuse.mail
From: Guido Purper <gpne...@expires-2003-02-28.arcornews.de>
Date: Sun, 16 Mar 2003 22:23:37 +0100
Local: Sun, Mar 16 2003 4:23 pm
Subject: Re: ASCII-Krützel

VZQIJBDJM...@spammotel.com (Daniela Wagner) wrote:
>kann mir jemand einen Tipp geben, wie man so ASCII-Krützel (z.b.
>[....]%40%5DFDC%5C%18M%11%0BOQT%11%19Q%18Q%16D%5DkFCX%5CW%1D%11%19%12%19[. ...])
>aus JavaScripts in Spam in ein lesbares Format bringen kann, ohne
>jedes Zeichen einzeln nachschlagen und übersetzen zu müssen?
>Ich hab's mit unencode versucht, dann kommt aber nur <html></html>
>dabei raus.

Guckst Du hier:
http://www.swishweb.com/dec.htm und dann ggf. mit  "Insert code manually"

Guido


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Daniela Wagner  
View profile  
 More options Mar 16 2003, 7:14 pm
Newsgroups: de.admin.net-abuse.mail
From: VZQIJBDJM...@spammotel.com (Daniela Wagner)
Date: 16 Mar 2003 16:14:56 -0800
Local: Sun, Mar 16 2003 7:14 pm
Subject: Re: ASCII-Krützel
Hatto von Hatzfeld <ha...@salesianer.de> wrote in message <news:kkj25b.ps3.ln@pinguin.salesianer.de>...

DANKE!

Daniela


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »