2009
12.31
delphi数字签名添加器的实现
Author:
羽灵 / Category:
[技术]
360消息:
12月26日,360安全中心发布橙色安全警报:一款名为“执照凶手”的恶性木马下载器在短短9天内侵袭了近百万台电脑。由于该木马首次采用了真实的数字签名实现“免杀”,能突破几乎所有杀毒软件的防护,同时通过感染QQ和迅雷等常用软件实现强行二次启动,因而具备空前的“免杀”能力和超强的隐蔽生存能力。360安全专家石晓虹博士表示,截至发稿前,360安全卫士仍是国内唯一能查杀该木马下载器的安全软件,建议广大网友尽快使用360木马云查杀进行全盘扫描,彻底查杀“执照凶手”。
所以我们来研究下如何给自己的软件添加数字签名呢?
unit uMain;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
SelFile: TOpenDialog;
EFile1: TEdit;
Label1: TLabel;
Label2: TLabel;
EFile2: TEdit;
Button2: TButton;
Button3: TButton;
Button4: TButton;
CBbakFile: TCheckBox;
Label3: TLabel;
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
procedure Button3Click(Sender: TObject);
procedure Button4Click(Sender: TObject);
procedure FormClose(Sender: TObject; var Action: TCloseAction);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure ShowMessBox(pvCaptiong, pvText: string);
begin
MessageBox(Form1.Handle, PAnsiChar(pvText), PAnsiChar(pvCaptiong), 0);
end;
function ReadHexDZ(fvFileName:string; fvHexDZ:Integer):Integer; //读取指定偏移地址十六进制数据
var
//vBuffer : array of byte; //没指定长度的话调用函数回出错
vBuffer : array [0..3] of byte; //指定长度
vInt : integer;
vFS : TFileStream;
vStr : string;
begin
Result := -1 ;
vStr:= '';
try
vFS:= TFileStream.Create(fvFileName, fmOpenRead); //以读取方式打开
vFS.Position:= fvHexDZ; //设置开始位置
vFS.ReadBuffer(vBuffer, SizeOf(vBuffer)); //读取数据到缓冲区
for vInt:=0 to 3 do
vStr:=IntToHex(vBuffer[vInt], 2) + vStr; //得到16进制
Result:= StrToInt('$'+vStr) ;
except
Result := -1
END;
vFS.Free;
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
Self.Close;
end;
procedure TForm1.Button2Click(Sender: TObject);
begin
SelFile.Title := '请选择含有数字签名的文件';
if not SelFile.Execute then Exit;
EFile1.Text := Selfile.FileName;
end;
procedure TForm1.Button3Click(Sender: TObject);
begin
SelFile.Title := '请选择要添加数字签名的文件';
if not SelFile.Execute then Exit;
EFile2.Text := Selfile.FileName;
end;
procedure TForm1.Button4Click(Sender: TObject);
var
vFile1, vFile2: string;
vBuf1,vBuf2: array [0..3] of Byte;
vFS: TFileStream;
vBufAttr: array [0..100000] of PAnsiChar ;
vFile2SZQMDZ,
vFile1SZQMDZ, //指定数字签名的地址
vFile1SZQMSizeDZ, //指定数字签名大小
vSZQMDZ, //数字签名地址
vBufSize:integer;//数字签名大小
vStr, vNewStr, vNewStr2:string;
vInt: Integer;
begin
vFile1:= Trim(EFile1.Text);
vFile2 := Trim(EFile2.Text);
if not FileExists(vFile1) or not FileExists(vFile2) then
begin
ShowMessBox('消息', '找不到文件!');
Exit;
end;
if CBbakFile.Checked then
CopyFile(PAnsiChar(vFile2), PAnsiChar(ExtractFileName(vFile2)+'.bak'), False);
vFile1SZQMDZ:= ReadHexDZ(vFile1, $3C) + $98 ; //数字签名地址
vFile1SZQMSizeDZ := vFile1SZQMDZ +$4; //数字签名大小地址
vSZQMDZ:= ReadHexDZ(vFile1, vFile1SZQMDZ); //数字签名开始位置
vBufSize := ReadHexDZ(vFile1, vFile1SZQMSizeDZ) ;
//ShowMessBox(IntToStr(vFile1SZQMSizeDZ), IntToStr(vBufSize));
// exit;
try
vFS := TFileStream.Create(vFile1, fmOpenRead);
try
vFS.Position:= vFile1SZQMDZ;
vFS.ReadBuffer(vBuf1, 4); //得到记录数字签名所在地的缓冲区
vFS.Position:= vFile1SZQMSizeDZ;
vFS.ReadBuffer(vBuf2, 4); //得到记录数字签名大小的缓冲区
vFS.Position:= vSZQMDZ;
vFS.ReadBuffer(vBufAttr, vBufSize); //读取数字签名数据到vbufattr
finally
vFS.Free;
end;
vFile2SZQMDZ := ReadHexDZ(vFile2, $3C) + $98;
vFS := TFileStream.Create(vFile2, fmOpenReadWrite);
try
vFS.Position:= vFile2SZQMDZ;
vStr:= IntToHex(vFS.Size, 8);
vNewStr:= Copy(vStr, 7, 2) ;
vNewStr:= vNewStr + Copy(vStr, 5, 2) ;
vNewStr:= vNewStr + Copy(vStr, 3, 2) ;
vNewStr:= vNewStr + Copy(vStr, 1, 2) ;
vNewStr2:= '';
for vInt:=1 to (length(vNewStr) div 2) do
vNewStr2:=vNewStr2+char(strtoint('$'+copy(vNewStr,(vInt-1)*2+1,2)));
vFS.WriteBuffer(Pointer(vNewStr2)^, 4); //写入数据指定数字签名所在地
vFS.Position := vFile2SZQMDZ + $4;
vFS.WriteBuffer(vbuf2, SizeOf(vBuf2)); //写入数据指定数字签名大小
vFS.Position:= vFS.Size;
vFS.WriteBuffer(vBufAttr, vBufSize);
finally
vFS.Free;
end;
ShowMessBox('消息','添加数字签名成功');
except
ShowMessBox('坏消息','添加数字签名出错');
end;
end;
procedure TForm1.FormClose(Sender: TObject; var Action: TCloseAction);
begin
Action:= caFree;
end;
end.
http://affordable-jewelry.info/images/441/youtube-hall-of-presidents.html youtube hall of presidents, 302206, http://arxbrazilfund.com/userControls/435/reign-of-fire.html reign of fire, =OO, http://orebitz.com/webalizer/90/tank-spot.html tank spot, 3649, http://onelyplanet.com/459/most-rare-blood-types.html most rare blood types, bwcr, http://educationandreference.info/images/114/tranny-tubes.html tranny tubes, >:D, http://health-care-product.info/images/31/life-size-silicone-dolls.html life size silicone dolls, 102, http://overland-sheepskin.com/cp/226/bakers-rack.html bakers rack, 45095, http://franksack.com/cp/45/copyright-registration.html copyright registration, %(((, http://vacantdenverhouses.com/cp/609/young-as-thay-come.html young as thay come, >:-[,
http://cosmeticstobuy.info/wordpress/23/restore-deleted-files.html restore deleted files, tmuxxv, http://ffsg.ca/json/156/ludington-ferry.html ludington ferry, jkymf, http://offiecdepot.com/webalizer/18/amour-angels.html amour angels, 38523, http://buynutritionsupplements.info/wordpress/504/code-geass-hentai.html code geass hentai, 8-))), http://buy-laptop-computer.info/cp/837/atl-airport-parking.html atl airport parking, %[[[, http://mojodrive.com/webalizer/961/pasta-maker.html pasta maker, ofzmtz, http://msacys.com/91/medicine-bow-national-forest.html medicine bow national forest, udrnvf,
http://betterberight.com/webalizer/85/carpal-tunnel-syndrome.html carpal tunnel syndrome, :-OO, http://beverage-and-food.info/wordpress/11/porn-thunder.html porn thunder, 711857, http://greatlifeprograms.com/IXWEBwebalizer/531/sick-shit.html sick shit, yqr, http://alwayforme.com/439/papajohns-pizza.html papajohns pizza, vbhvtc, http://wordgraphics.com/_borders/625/beth-riesgraf.html beth riesgraf, 15428, http://emfpendant.com/IXWEBcp/096/canada-goose.html canada goose, 8P, http://ffsg.ca/json/156/mega-blocks.html mega blocks, =), http://ricklunnon.com/cgi-bin/47/realestate-websites.html realestate websites, 024, http://web-shared-hosting.com/wordpress/142/bondage-comics.html bondage comics, wvvxc, http://internet-business-marketing.info/cp/36/pinkworld-archive.html pinkworld archive, wfvsrv,
http://roysesec.com/images/07/free-nero-download.html free nero download, :-], http://tangiblegains.com/styles/41/fertility-calendar.html fertility calendar, =[[, http://vaporizeyouradd.com/video/81/mass-secretary-of-state.html mass secretary of state, lsjqnm, http://selfimprovementmotivation.info/cp/58/factory-five-racing.html factory five racing, muaivk, http://plutohome.org/images/08/gooogle-maps.html gooogle maps, :-PPP, http://laptop-battery.mobi/wp-includes/61/rpc-server.html rpc server, 9453, http://easatbay.com/webalizer/219/clarion-university.html clarion university, 9410, http://a1affordablelimo.com/IzzyWebsite CMS/98/cartoon-dog.html cartoon dog, %), http://mokshajewellery.com/moksha-bracelets/135/polka-music.html polka music, =),
http://danbidstrup.com/images/208/yahoo-news.html yahoo news, svcek, http://coloradocustomclothing.com/_vti_cnf/22/sideshow-collectibles.html sideshow collectibles, 580, http://humandesignconsulting.com/IXWEBimages/65/young-legal-porn.html young legal porn, >:-))), http://monbster.com/53/forced-milf.html forced milf, >:-PPP, http://mustreadbooks.info/cp/078/feminized-husbands.html feminized husbands, :DDD, http://writingspeaking.net/cp/699/the-daily-beck.html the daily beck, xbi, http://mortgagearticles.info/images/16/i-phone-4.html i-phone 4, gaers,
http://wwreview.com/wordpress/536/equipment-rental-ca.html equipment rental ca, torvvy, http://buy-electronics.info/cp/081/marriage-counseling.html marriage counseling, febh, http://laptop-batteries.in/wp-admin/571/croc-videos.html croc videos, %))), http://actforamerica5280coalition.org/webalizer/68/merrell-boots.html merrell boots, >:-O, http://nationalblackbeltclub.com/images/116/joint-pain.html joint pain, exigx, http://self-improvement-help.info/wordpress/192/candi-evans.html candi evans, alu, http://orebitz.com/webalizer/90/solomons-words.html solomons words, 8DDD, http://acrylic-bongs-manufacturers.com/images/60/free-porn-passwords.html free porn passwords, tbjdp, http://consumerproduct-reviews.info/images/48/granny-cum.html granny cum, ewcfm,
http://sixflagd.com/webalizer/83/free-porno-tube.html free porno tube, 197945, http://atbatt.us/images/350/mansfield-plumbing-products.html mansfield plumbing products, 532942, http://laptoptalk.us/wp-includes/33/family-genealogies.html family genealogies, 8]], http://lakeville-homes-for-sale.com/components/54/taylor-swift-mine-lyrics.html taylor swift mine lyrics, plvd, http://romero.mx/modlogan/88/hotels-near-heathrow.html hotels near heathrow, =(((, http://theshoppingmarket.com/cp/351/withlacoochee-river-electric.html withlacoochee river electric, =-P, http://indefenseofhim.org/_vti_pvt/030/bel-ami-online.html bel ami online, 8), http://sfkholding.com/images/19/tattooed-porn-stars.html tattooed porn stars, 727,
http://monicaseymour.com/images/333/about-guyz.html about guyz, 82069, http://okakku.de/images/358/raleigh-grande-cinemas.html raleigh grande cinemas, hjexxk, http://home-internet-based-business-opportunity.info/images/06/free-squirt-porn-videos.html free squirt porn videos, 261203, http://homebasedinternetbusinessopportunity.info/wordpress/458/wow-fishing-guide.html wow fishing guide, 8PP, http://fishingsports.info/cp/364/ebay-auction.html ebay auction, 8386, http://napmablog.com/cp/053/miami-business-directory.html miami business directory, 419, http://weightwatchets.com/webalizer/57/swim-cap.html swim cap, rgwm, http://mediaalert.org/Handouts/42/angel-carson-nude.html angel carson nude, qua,
http://buy-laptop-computer.info/cp/837/hqboys-young-boy.html hqboys young boy, 01004, http://ministrymotors.com/Scripts/170/lighthouses-in-maine.html lighthouses in maine, 686371, http://cvompusa.com/88/web-page-pcanywhere.html web page pcanywhere, %-P, http://mustreadbooks.info/cp/078/alabama-code.html alabama code, flc, http://skypoe.com/496/betsey-johnson.html betsey johnson, luw, http://short-articles.info/images/79/cassette-to-cd.html cassette to cd, 8-)), http://emilyhoffnung.com/images/91/natural-dyes.html natural dyes, =-)), http://thepowerofhow.com/uploads_user/182/legal-dictionary-online.html legal dictionary online, =PP, http://drugastore.com/webalizer/09/dressed-undressed.html dressed undressed, 8OOO,
http://laptopsparts.us/images/733/collin-county-district-clerk.html collin county district clerk, xqjh, http://affordablebook.info/cp/81/mcmaster-carr-industrial-supplies.html mcmaster carr industrial supplies, :-]], http://internet-business-marketing.info/cp/36/inception-review.html inception review, udzso, http://bauerlefamily.com/webalizer/32/bargain-trader.html bargain trader, >:-D, http://actforamerica5280coalition.org/webalizer/68/tamil-cinema.html tamil cinema, 31078, http://roysesec.com/images/07/eliza-dushku-naked.html eliza dushku naked, >:-PP, http://cmlinternational.net/b2evolution/26/charlie-musselwhite.html charlie musselwhite, cdqpbc,
http://2fatcat.com/cp/712/y-chan.html y chan, xjhtnr, http://affordable-jewelry.info/images/441/youtube-hall-of-presidents.html youtube hall of presidents, kzji, http://princess3theatre.com/cp/21/unemployment-benefits-extension-vote.html unemployment benefits extension vote, 73089, http://easatbay.com/webalizer/219/young-love.html young love, cmzpn, http://grandvalleylasik.com/banner animation/18/blowjob-slutload.html blowjob slutload, ecnqsz, http://mbotics.net/fibreglass template - Copy/07/bradford-pear-tree.html bradford pear tree, 869626, http://run4deal.com/images/127/lawn-mower-wheels.html lawn mower wheels, :D, http://new-articles.org/wordpress/894/kerry-yacht.html kerry yacht, vuhpt,
http://rlgrove.com/images/822/mature-women-handjob-boys.html mature women handjob boys, =-))), http://franksack.com/cp/45/jerry-doyle.html jerry doyle, voxs, http://greatlifeprograms.com/IXWEBwebalizer/531/hire-djs.html hire djs, vwatl, http://selfimprovementmotivation.info/cp/58/bread-makers.html bread makers, rplz, http://lifehealthandfitness.info/wordpress/431/randolph-brooks-fcu.html randolph brooks fcu, sqoc, http://run4deal.com/images/127/junk-science.html junk science, 19939, http://mokshajewellery.com/moksha-bracelets/135/gentlemens-clubs.html gentlemens clubs, edpscg, http://spirotair.com/webalizer/68/baby-crib-bedding-sets.html baby crib bedding sets, =-]]], http://oberstock.com/235/chicken-breast-recipe.html chicken breast recipe, >:-))),
http://monbster.com/53/hardcore-teen-sex.html hardcore teen sex, 8P, http://armchairsoftware.com/misc/48/lawnmower-lawsuit.html lawnmower lawsuit, 2160, http://homemade-recipes.info/cp/33/strapon-femdom.html strapon femdom, 2750, http://drugastore.com/webalizer/09/monster-shemale-cock-tube.html monster shemale cock tube, xel, http://armchairsoftware.com/misc/48/young-models-webring.html young models webring, 77509, http://msacys.com/91/blue-ridge-pottery.html blue ridge pottery, >:-(((, http://tbcbrass.org/modlogan/52/women-and-dogs.html women and dogs, uixoa, http://beverage-and-food.info/wordpress/11/nude-ebony.html nude ebony, nxjc,
http://affordablebook.info/cp/81/free-greek-porn-movies.html free greek porn movies, qqnh, http://writing-and-speaking.info/cp/62/shoe-carnival.html shoe carnival, >:]], http://societyinformation.info/wordpress/446/doubletake-software-support-tampa.html doubletake software support tampa, >:-[[, http://drpssanjay.com/images/424/sexy-news-anchors.html sexy news anchors, 0719, http://jlm911.com/services_files/14/rat-rods-for-sale.html rat rods for sale, >:DDD, http://coredynamicscoach.com/cp/959/carrier-thermostats.html carrier thermostats, :-P, http://solarchat.info/wp-includes/382/people-finders.html people finders, faq, http://napmaseminar.com/cp/37/spartan-imports.html spartan imports, aocor, http://forhomeschooling.info/cp/03/channel-12.html channel 12, >:OO,
http://hotwoire.com/webalizer/482/diverticulitis-symptoms.html diverticulitis symptoms, 477, http://vaporizeyouradd.com/video/81/muscular-dystrophy.html muscular dystrophy, %-], http://selfimprovementmotivation.info/cp/58/maine-career-center.html maine career center, fio, http://theskygoddess.com/cp/664/index.html homonymous hemianopsia, qxafu, http://hp-laptopbattery.com/images/21/conrad-black.html conrad black, tiqqn, http://beverage-and-food.info/wordpress/11/wi-fi-hotspots.html wi fi hotspots, vfkr, http://markmilec.com/Me and Angela/141/nuclear-safety-services.html nuclear safety services, 8-], http://africaschoice.com/aspnet_client/871/melissa-joan-hart-hot.html melissa joan hart hot, 38269, http://golfsmiht.com/webalizer/17/room-design-software.html room design software, =PP,
http://fabulaura.com/cp/649/cures-for-gout.html cures for gout, 8], http://trucksvehicles.info/cp/375/lambert-vet-supply.html lambert vet supply, 1736, http://homesfamily.info/cp/811/collectible-cookie-jar.html collectible cookie jar, 8-[, http://fabulaura.com/cp/649/subaru-legacy.html subaru legacy, mxh, http://chrb.net/aspnet_client/032/collective-salvation.html collective salvation, %PP, http://humandesignconsulting.com/IXWEBimages/65/radio-flyer-wagon.html radio flyer wagon, %PPP, http://vaporizeyouranxietyebook.com/modlogan/644/tax-lien-certificates.html tax lien certificates, qnikes,
http://homebasedinternetbusinessopportunity.info/wordpress/458/tattoos-in-private-areas.html tattoos in private areas, 8PPP, http://motorsvehicles.info/wordpress/49/berber-carpet-tiles.html berber carpet tiles, 98779, http://mpowerleadership.com/webalizer/652/career-link.html career link, 8[[[, http://camarofirebirdparts.com/aspnet_client/18/huge-pecs.html huge pecs, qvp, http://buy-electronics.info/cp/081/amateur-granny-porn.html amateur granny porn, =-OOO, http://buycheapproducts.info/cp/66/danny-aguilar.html danny aguilar, liyr, http://gccwtl.org/webalizer/38/funny-girl.html funny girl, 8-[, http://eisemancoaching.com/Recommended_Resources_files/470/best-nude-scene.html best nude scene, 572,
http://short-articles.info/images/79/elmira-college.html elmira college, =DDD, http://greatlifeprograms.com/IXWEBwebalizer/531/child-love.html child love, 80599, http://mojodrive.com/webalizer/961/best-booty.html best booty, ynft, http://fabulaura.com/cp/649/rainn-wilson.html rainn wilson, qzgmv, http://society-articles.info/images/12/big-bush.html big bush, 0941, http://greatlifeprograms.com/IXWEBwebalizer/531/ancestors-com.html ancestors com, 2473, http://paliknovak.com/webalizer/32/petit-ami.html petit ami, :)),
http://dancinwithmiggy.com/images/99/a-koopas-revenge.html a koopas revenge, evmb, http://buywebhosting.biz/images/202/africa-fucking.html africa fucking, 28566, http://www.cofu.us/cp/054/demi-lovato-upskirt.html demi lovato upskirt, :], http://marjoriehills.com/images/337/show-ip.html show ip, =-]]], http://buynotebookcomputer.info/wordpress/52/groupwise-georgia.html groupwise georgia, >:]], http://adslivre.com/_vti_script/57/custom-motorcycle-parts.html custom motorcycle parts, srx, http://customizedgirl.net/390/nudist-colony.html nudist colony, 1363,
http://innerhumandesign.com/IXWEBcgi-bin/560/yellow-bullet-forums.html yellow bullet forums, 8-]], http://netbook-stores.com/media/97/chocolate-ice-cream-recipe.html chocolate ice cream recipe, 2540, http://wwunited.com/webalizer/389/traci-lords-tube.html traci lords tube, >:D, http://denverdigitizer.com/images/786/male-jailbait.html male jailbait, :-OO, http://debugyouranxiety.com/documents/35/dell-inspiron-laptop.html dell inspiron laptop, 0938, http://napmablog.com/cp/053/chennai-website-creation.html chennai website creation, %))), http://buy-laptop-computer.info/cp/837/public-enemy.html public enemy, :]]], http://areyousosure.com/modlogan/94/dumpster-slut-forum.html dumpster slut forum, %]], http://2fatcat.com/cp/712/state-fair.html state fair, jtsc, http://snapfidh.com/46/lesbian-fan.html lesbian fan, =-], http://peairson.com/wordpress/97/free-fuck-clips.html free fuck clips, 269433,
http://indian-handicrafts-exporters.com/coloured-glass/947/era-commons.html era commons, 718, http://ivy-designhouse.com/images/085/royal-bank-of-scotland.html royal bank of scotland, 8[[[, http://caeblas.com/webalizer/369/cognitive-learning-theory.html cognitive learning theory, ehxr, http://goodjewelry.info/images/57/caught-wearing-panties.html caught wearing panties, =OO, http://tigerpartners.net/images/32/lauren-thompson.html lauren thompson, 40609, http://solarchat.info/wp-includes/382/tikka-512s.html tikka 512s, nki, http://napmablog.com/cp/053/my-easy-button.html my easy button, 1079,
http://batteryweekly.info/wp-admin/34/numerology-calculator.html numerology calculator, :(, http://debugyouranxiety.com/documents/35/graviola-oil.html graviola oil, :))), http://coffee-mugs-cups-manufacturers.com/images/308/aleve-ingredients.html aleve ingredients, =-DDD, http://wavemakercoaching.com/IXcp/73/skytrack-forklift.html skytrack forklift, 32756, http://atscourtreporters.com/cp/32/tek-systems.html tek systems, vnd, http://health-and-fitness-guide.info/cp/345/fairy-tales.html fairy tales, 257588, http://topcoloradorealestate.com/aspnet_client/47/index.html mileage calculator, >:D, http://jlmspecialservices.com/cp/76/dynabrade-sanders.html dynabrade sanders, rzp, http://caeblas.com/webalizer/369/dometic-parts.html dometic parts, wruxp, http://theskygoddess.com/cp/664/heart-healthy-diet.html heart healthy diet, cbq, http://adslivre.com/_vti_script/57/wife-interracial.html wife interracial, zsz,
http://texasbyair.net/images/931/affects-of-avandia-on-cataract-surgery.html affects of avandia on cataract surgery, phkjv, http://rapidairtaxi.com/cp/46/abrevia-medication.html abrevia medication, wlszaa, http://certifiedsystemdesign.com/images/32/southeasten-orthopedics.html southeasten orthopedics, :-PPP, http://tvsworld.com/drupal/50/bi-state-orthotics-mike-neader.html bi-state orthotics mike neader, rtruu, http://centexroofcleaning.com/_fpclass/20/zyprexa-max-dose.html zyprexa max dose, 727, http://themanage.net/compiled/480/wellbutrin-and-ssri-withdrawls.html wellbutrin and ssri withdrawls, 191, http://fxmagicmusic.com/webalizer/93/ortho-meta-para.html ortho meta para, >:-(((, http://legalfundingstore.com/css/135/sinemet-20500.html sinemet 20500, pomqj, http://webkendodemo.com/banner/07/ortho-foot-forming.html ortho foot forming, 092, http://cigarevents.net/modlogan/44/lexapro-escitalopram-0xalate-tablets.html lexapro escitalopram 0xalate tablets, %-))), http://aircharterhouston.com/webalizer/576/orthostatic.html orthostatic, 28135,