The Source for Java Technology Collaboration
User: Password:



Tom White

Tom White's Blog

Testing for errant network connections

Posted by tomwhite on February 08, 2007 at 01:37 AM | Comments (2)

We kept breaking our XML catalog resolution in the course of developing an application. We would refactor the parser code, or we would upgrade a schema and forget to upgrade the catalog. The application wouldn't break, but it took longer to run since resources were being retrieved over the network rather than using the local catalog. Because we didn't time our test runs, and because we had lots of non-network dependent tests in the suite, this regression would go unnoticed for a while. When it was noticed we'd fix the symptom, then move on. Until it happened again...

After the sixth or so occurrence in few years, I wrote a class to detect the problem. It's a simple implementation of SecurityManager that throws an exception when an attempt is made to connect to a site that is not on the list of approved hosts. The code appears below.

To use it we set the -Djava.security.manager command line argument (to the fully-qualified classname of RestrictedNetworkAccessSecurityManager) when running our test suites. Tests that access hosts that we aren't expecting will then fail with an error.

It's not just for applications that use XML catalogs. It's useful for almost any code, as a way to audit - and regression test - the network resources your application depends on. (Like a database you thought wasn't being used any more.) It's also a simple way to discover when third-party libraries connect to the internet unannounced.

The code is rough and ready - it's good enough for testing, but not really suitable for anything else, since it is totally permissive except for the checks on outbound connections. Feel free to use it, and suggest improvements or ways you've tackled the same problem in the comments section.


import java.net.SocketPermission;
import java.security.AccessControlException;
import java.security.Permission;
import java.util.Arrays;
import java.util.List;

public class RestrictedNetworkAccessSecurityManager extends SecurityManager {
  private static final List<String> ALLOWED_HOSTNAMES = Arrays.asList(new String[]{
    "localhost", "127.0.0.1",
  });

  @Override
  public void checkConnect(String host, int port, Object context) {
    checkConnect(host, port);
  }

  @Override
  public void checkConnect(String host, int port) {
    if (host == null) {
      throw new NullPointerException("host can't be null");
    }
    if (!host.startsWith("[") && host.indexOf(':') != -1) {
      host = "[" + host + "]";
    }
    if (ALLOWED_HOSTNAMES.contains(host)) {
      return;
    }
    String hostPort;
    if (port == -1) {
      hostPort = host;
    } else {
      hostPort = host + ":" + port;
    }
    String message = "Opening a socket connection to " + hostPort + " is restricted.";
    throw new AccessControlException(message, new SocketPermission(hostPort, "connect"));
  }

  @Override
  public void checkPermission(Permission perm) {
    // Allow all other actions
  }

  @Override
  public void checkPermission(Permission perm, Object context) {
    // Allow all other actions
  }
}

Bookmark blog post: del.icio.us del.icio.us Digg Digg DZone DZone Furl Furl Reddit Reddit
Comments
Comments are listed in date ascending order (oldest first) | Post Comment


  • capture traffic on port 80 (you can substitute snoop for tcpdump if you're on an old Solaris box):
    sudo tcpdump -ni eth0 -w /tmp/capture -s0 port 80
    ctrl-C when you've finished, and move the capture file around as required
    ethereal /tmp/capture
    Filter (tweak as appropriate):
    ip.dst_host != "127.0.0.1" and http.request == 1

    I believe ethereal is now known as wireshark.

    Posted by: aglet on February 08, 2007 at 06:40 AM

  • After the sixth or so occurrence in few years, I wrote a class to detect the problem. It's a simple implementation of SecurityManager that throws an exception when an attempt is made to connect to a site that is not on the list of approved hosts. The code appears below.

    To use it we set the -Djava.security.manager command line argument (to the fully-qualified classname of RestrictedNetworkAccessSecurityManager) when running our test suites. Tests that access hosts that we aren't expecting will then fail with an error.


    sexe
    sexe
    sexe
    sexe
    sexe
    sexe
    sexe
    sexe
    sexe
    sexe
    sexe
    sexe
    sexe
    sexe
    sexe
    sexe


    sexe714
    sexe712
    sexe711
    sexe707
    sexe702
    sexe700
    sexe697
    sexe695
    sexe693
    sexe691
    sexe210
    sexe205
    sexe199
    sexe195
    sexe192
    sexe189
    sexe188
    sexe186
    sexe184
    sexe180
    sexe010
    sexe006
    sexe4995
    sexe4988
    sexe4985
    sexe4980
    sexe4976
    sexe4969
    sexe4968
    sexe4965
    sexe4964
    sexe689
    sexe688
    sexe686
    sexe683
    sexe680
    sexe678
    sexe677
    sexe674
    sexe673
    sexe672
    sexe043
    sexe040
    sexe036
    sexe035
    sexe032
    sexe031
    sexe030
    sexe028
    sexe026
    sexe024
    sexe438
    sexe436
    sexe431
    sexe428
    sexe426
    sexe424
    sexe420
    sexe416
    sexe413
    sexe410
    sexe254
    sexe250
    sexe247
    sexe243
    sexe242
    sexe225
    sexe223
    sexe215
    sexe213
    sexe192
    sexe026
    sexe028
    sexe029
    sexe037
    sexe040
    sexe042
    sexe045
    sexe049
    sexe052
    sexe055
    sexe00
    sexe892
    sexe889
    sexe887
    sexe883
    sexe878
    sexe874
    sexe869
    sexe866
    sexe864
    sexe77
    sexe75
    sexe72
    sexe70
    sexe66
    sexe64
    sexe62
    sexe60
    sexe57
    sexe54


    sexe50
    sexe40
    sexe48
    sexe47
    sexe46
    sexe45
    sexe44
    sexe43
    sexe42
    sexe41
    sexe586
    sexe595
    sexe594
    sexe593
    sexe592
    sexe591
    sexe589
    sexe590
    sexe588
    sexe587
    sexe69
    sexe67
    sexe65
    sexe64
    sexe61
    sexe60
    sexe59
    sexe57
    sexe58
    sexe56
    sexe54
    sexe52
    sexe51
    sexe50
    sexe48
    sexe47
    sexe46
    sexe45
    sexe44
    sexe43
    sexe520
    sexe519
    sexe517
    sexe516
    sexe515
    sexe513
    sexe512
    sexe511
    sexe510
    sexe509
    sexe562
    sexe564
    sexe560
    sexe558
    sexe559
    sexe557
    sexe555
    sexe554
    sexe552
    sexe551
    sexe674
    sexe673
    sexe672
    sexe670
    sexe668
    sexe667
    sexe665
    sexe664
    sexe663
    sexe662
    sexe23
    sexe22
    sexe21
    sexe20
    sexe19
    sexe18
    sexe16
    sexe17
    sexe15
    sexe14
    sexe92
    sexe91
    sexe90
    sexe89
    sexe87
    sexe86
    sexe81
    sexe84
    sexe80
    sexe79
    sexe67
    sexe69
    sexe66
    sexe64
    sexe61
    sexe63
    sexe60
    sexe59
    sexe57
    sexe56


    sexe
    http://www.quizilla.com/users/ojeriltes/journal/548583/xxx_extrait_,_video_porno_gratuite_gay_,_donne_mature_porno_gratuito_,_couple_accro_sexe_,_sexe_gros_plan_gratuit/
    http://www.quizilla.com/users/ojeriltes/journal/548585/mature_sexe_gratuit_,_histoire_erotique_sexe_intime_,_sexe_baise_hard_video_photo_,_sexe_black_gratui_,_sexe_vieille_femme_gratu/
    http://www.quizilla.com/users/casederma/journal/548609/taille_sexe_homme_,_photographie_sexe_feminin_,_best_indian_xxx_movies_,_video_gratis_porno_,_xxx_disney_,_photo_gratuite_de_sex/
    http://www.quizilla.com/users/casederma/journal/548610/oceane_actrice_porno_,_femme_sexe_photo_gratuit_,_extrait_gratui_porno_,_video_porno_sex_,_photo_gratuite/
    http://www.quizilla.com/users/barementas/journal/548636/video_porno_anal_big_tits_,_forum_existe_jeu_porno_,_sexy_sexe_video_,_sexe_jeune_thailandaise/
    http://www.quizilla.com/users/barementas/journal/548637/sexe_asiatique_paris_,_jeu_video_adulte_xxx_,_photo_porno_hards_xxx_choquantes/
    http://www.quizilla.com/users/barementas/journal/548638/video_lesbienne_xxx_gratuit_,_photo_and_de_and_sexe_and_gratuite_,_sexe_video_porno_direct_,_sexe_anal_beurette/
    http://www.quizilla.com/users/rodiknolas/journal/549695/film_porno_mangas_,_black_video_sexe_,_adulte_porno_x_,_annonce_casting_porno_,_film_porno_yasmine/
    http://www.quizilla.com/users/rodiknolas/journal/549696/video_xxx_telecharger_,_gros_plan_sur_des_sexe_,_porno_lesbienne_video_,_xxx_hacked_password_,_extrait_gratuit_sexe_anal/
    http://www.quizilla.com/users/fronbert/journal/549723/video_porno_amateur_gratuite_,_photo_porno_x_,_sexe_photo_xxx_,_free_clip_porno_,_asiatique_and_xxx/
    http://www.quizilla.com/users/fronbert/journal/549725/femme_aimant_sexe_,_image_pps_sexe_sexy_bonne_annee_,_porno_gay_gratuit_photo_,_hot_sexe_trailer_sexe_porno/
    http://www.quizilla.com/users/fronbert/journal/549726/petit_and_jeu_and_porno_,_rencontre_amatrice_sexe_,_femme_xxx_direct_,_porno_and_mature_,_porno_and_amateur/
    http://www.quizilla.com/users/fronbert/journal/549733/sexe_gratuit_hard_interracial_asian_,_photo_de_jeune_gay_porno_,_xxx_lesbienne_gratuit_,_photo_xxx_femme_musulman_algerienne_gra/
    http://www.quizilla.com/users/dalesembra/journal/549745/jeu_xxx_free_,_xxx_photo_gratuit_,_sexe_xxx_gay_,_video_porno_gratuit_sans_telechargement_,_photo_sexe_femme_mature/
    http://www.quizilla.com/users/dalesembra/journal/549746/porno_sexe_tres_jeune_,_image_gratuit_sexe_,_telecharge_film_porno_gratui_,_jeu_sexe_jouer_maintenant/
    http://www.quizilla.com/users/dalesembra/journal/549744/gay_sexe_photo_beur_gratuit_,_sex_video_xxx_,_sexe_gratuit_extrait_,_femme_mure_gratuit_sexe_,_vidaco_humour_xxx_,_blague_pompie/
    http://www.quizilla.com/users/cerrikolas/journal/549787/xxx_porno_malgache_,_voir_extrait_film_gay_sexe_gratuit_,_volcanic_sex_xxx_,_accessoire_sexe_shop_,_sexe_mangas_xxx/
    http://www.quizilla.com/users/cerrikolas/journal/549789/image_porno_d_angelina_jolie_,_visio_chat_sexe_,_jeu_sexe_hantai_gratuit_adulte_,_porno_film_gratuit_,_achat_dvd_sexe_mangas/
    http://www.quizilla.com/users/rabaduba/journal/549800/sexe_hard_video_gratuite_,_sexe_gratuit_femme_mure_avec_jeune_,_arabe_porno_sex_,_divx_xxx_gratuit_,_cul_xxx_,_video_porno_gratu/
    http://www.quizilla.com/users/rabaduba/journal/549801/photo_amateur_xxx_,_porno_girls_video_,_pig_sex_xxx_,_grosse_femme_xxx_,_sexe_shop_travestie/
    http://www.quizilla.com/users/rabaduba/journal/549810/couple_sexe_amateur_francais_,_photo_enceinte_sexe_gratuit_,_hot_sexe_x_,_photo_sexe_gratuit_gay_,_porno_emule/
    http://www.quizilla.com/users/moniclare/journal/550952/mature_sexe_,_video_femme_mure_sexe_,_telecharger_extrait_film_porno_,_grosse_marocaine_beurette_sexe/
    http://www.quizilla.com/users/moniclare/journal/550953/porno_xxx_noir_,_mr_sexe_photo_anal_,_extrait_and_and_video_and_and_sexe_,_xxx_sex_pic/
    http://www.quizilla.com/users/berenistre/journal/550974/francais_sexe_,_moteur_recherche_sexe_amateur_gratuit_,_telechargement_gratuit_de_film_xxx_,_annuaire_sexe_gay_gratuit/
    http://www.quizilla.com/users/berenistre/journal/550984/video_sexe_gratos_noire_,_xxx_latina_,_video_porno_sex_lesbienne_,_free_clip_sexe_,_school_girls_xxx_,_image_de_sexe_insolite/
    http://deremanty.zeblog.com/210768-clip-amateur-sexe-xxx-video-clip-mangas-asiatique-tre-hard-porno-sexe-gratuit-amateur-quebec-sexe-gratuit-femme-musulman-xxx-rencontre-sexe-paris-chat-gratuit-photo-gratuite-sexe-homme-humour-sexe-photo/
    http://deremanty.zeblog.com/210767-photo-porno-amatrice-sexe-penis-anal-femme-xxx-geneve-sexe-poilu-femme-xxx-gratuit-jeune-femme-xxx-pornstar-cute-hard-xxx-porno-hard-xxx-private-xxx-sexe-jeune-ado-xxx-sex-movies/
    http://adrianne009.zeblog.com/210825-mangas-porno-free-sexe-beurette-photo-gratuit-film-porno-maroc-photo-galerie-cul-latine-porno-star-extrait-film-porno-sex-film-and-porno-and-amateur-and-gratis-porno-gratuit-film-hard-sexe-video/
    http://adrianne009.zeblog.com/210824-rencontre-femme-mature-sexe-dvd-xxx-baby-sister-gay-interracial-xxx-porno-arabe-algerienne-poilue-gratuit-sexe-amateur-echangiste-visioner-un-film-porno-gratuit-vente-dvd-porno-homosexuel/
    http://adrianne009.zeblog.com/210823-gay-gratuit-homo-gratuit-sexe-video-amateur-gratuite-porno-sex-porno-video-gratuit-sexe-pps-gratuit-sexe-asiatique-proposal-xxx-sexe-video-gay-sexmefree-and-annuaire-and-sexe/
    http://adrianne009.zeblog.com/210822-annuaire-site-video-sexe-gratuit-annonce-black-xxx-sexe-grosse-vieille-fontaine-nouveaute-dvd-porno-gay-video-porno-gratuite/
    http://derekferver.zeblog.com/211316-sexe-femme-mure-photo-gratuit-film-sexe-gratos-video-sexe-hard-francais-star-du-porno-gratuite-lesbienne-sexe-photo-jeu-mangas-xxx-photo-de-sexe-femme-mure-gratuit-film-porno-gratuit-sans-telephoner-payer/
    http://derekferver.zeblog.com/211314-photo-sexe-amateur-x-vraiment-gratuite-annuaire-porno-arabic-film-sexe-grosse-femme-actrice-black-porno-sexe-jeune-avec-vieille-video-porno-gay-gratuit-forum-sexe-francais-image-sexe-roman-photo-sexe/
    http://cartegibe.zeblog.com/211326-photo-porno-video-porno-gratuit-sexe-sexy-porno-cul-marie-jalouse-elle-match-pantouze-charme-webcam-hard-video-porno-de-pamela-anderson-photo-sexe-gratuit-arabe-beurette-gratuit-porno-arabe-xxx-amateur/
    http://cartegibe.zeblog.com/211325-gay-porno-film-gratuit-xxx-sexs-hot-photo-et-video-sexe-bizarre-gratuite-blog-video-porno-ejac-rencontre-sexe-chat-porno-sex-amateur-gratuit-photo-porno-black-gratuite-sexe-penetration-extreme/
    http://cartegibe.zeblog.com/211324-extrait-clip-porno-gratuit-video-gratuite-xxx-celebrite-xxx-porno-hard-annuaire-gratuit-sexe-portail-gratuit-extrait-cinema-xxx/
    http://romader.zeblog.com/211345-video-xxx-gratuite-semaine-video-black-sexe-julie-porno-video-hot-xxx-vieille-sexe-photo-gay-sexe-xxx-extrait-and-film-and-porno-telechargement-video-porno-gratuit-femme-avec-sexe-tres-poilu/
    http://romader.zeblog.com/211344-pornographie-image-sur-sexe-star-intimes-carasexe-com-u-register-php-sexe-sexe-de-vieux-gay/
    http://romingeres.zeblog.com/211373-porno-and-lesbienne-video-amateur-adulte-xxx-image-gif-xxx-film-porno-amateur-a-telecharger-sexe-hard-porno-photo-porno-x-gratuit-sexe-histoire-film-porno-americain-xxx-telecharger-des-video-gratuite-de-sexe/
    http://romingeres.zeblog.com/211372-film-porno-classe-x-histoire-coquin-sexe-confession-recits-xxx-pix-com-jeu-de-sexe-xxx-xxx-hot-femme-chaude-sexe-galerie-porno-gratuit-porno-gay-photo-gratuit-jeu-sexe-gra-gay-bears-xxx-nu/
    http://ramabilla.zeblog.com/211428-hardcore-xxx-sex-video-la-plus-belle-actrice-porno-google-porno-gratuit-photo-clip-xxx-free-extrait-porno-video-gratuite-histoire-intime-sexe-extrait-and-casting-and-porno-sexe-homme-afrique/
    http://ramabilla.zeblog.com/211425-star-academie-sexe-demo-et-extrait-dvd-porno-video-porno-francais-gratuit-sex-porno-xxx-gros-sein-afrique-sex-porno-video-porno-amateur-gratuit-acteur-and-porno-sexe-porno-grati-xxx-sexe-xxx/
    http://mirefunnas.zeblog.com/212000-amatrice-xxx-amateur-skyblog-sexe-homme-sexe-erection-sexe-mangas-hentai-femme-anal-porno-gratuit-kristinkreuk-film-xxx-xxx-mature-gratuit/
    http://mirefunnas.zeblog.com/211999-xxx-gratuite-photo-fist-sexe-bizarre-sexe-et-porno-hard-star-sexe-video-photo-hard-xxx-rencontre-sexe-amateur-avec-photo/
    http://mirefunnas.zeblog.com/211998-porno-mangas-gratuit-les-and-simpsons-and-xxx-sex-photo-porno-gratuit-sexe-porno-hard-gratuit-photo-porno-de-lesbienne-gratuite/
    http://chilenros.zeblog.com/212046-video-xxx-avec-extrait-gratuit-porno-hard-gay-gratuit-webcam-porno-sexe-masturber-homme-sexe-webcam-live-show-forum-free-password-xxx-blog-couple-perso-sexe-free-porno-galerie-video-sexe/
    http://chilenros.zeblog.com/212037-sexe-and-le-and-gaulois-mangas-bd-xxx-homme-plus-grand-sexe-monde-xxx-porno-jeune-black-ans-porno-sex-xxx-famous-toon-xxx/
    http://dalaster.zeblog.com/212067-beurette-ki-aime-sexe-porno-and-hard-and-gratuit-sexe-gratuit-annuaire-sex-xxx-mature-mother-sexe-acces-gratuit-sexe-porno-visionner-film-porno-gratuit-bd-mangas-porno-gratuite-xxx-clip-free-video/
    http://dalaster.zeblog.com/212066-femme-enceinte-sexe-sexe-ala-cam-photo-et-dvd-porno-gratuit-dragon-ball-xxx-gratuit-rencontre-sexe-homme-haguenau-sexe-arabe-algerienne-clip-et-extrait-porno-gratuit-extrait-porno-telecharger/


    acrobat
    ad-aware
    adulte
    amateur
    amateur2
    amateur3
    amatrice
    anal
    anime
    antivirus-gratuit
    antivirus
    anus
    ares
    asian
    asiatique
    ass
    astuce
    auto
    avatar
    avatars
    babe
    baise
    bang-gang
    bang
    bbw
    bdsm
    beach
    beauty
    bebe
    bed
    beurette
    bikini
    bisexual
    bisexuel
    bite
    bizarre
    black
    black2
    blague
    blagues
    blonde
    blowjob
    bondage
    boob
    booty
    boy
    brune
    bukkake
    busty
    carte
    carte2
    carte3
    cartes
    cartes2
    cartes3
    cartoon
    celebrite
    chaleur
    chanson-gratuit
    chansons-gratuit
    charme
    cheat
    cinema
    clitoris
    clone
    close-up
    cochon
    cock
    code-jeu
    coquin
    couille
    couple
    couple2
    creampie
    cul
    cum
    cumshot
    deep-throat
    diaporama
    diaporamas
    dick
    dildo
    dirty
    divx-gratuit
    divx
    divx2
    double-penetration
    download
    drunk
    ebony
    ecran-de-veille
    ecrans-de-veille
    edonkey
    emoticone
    emoticones
    emule-gratuit
    emule
    enculer
    enfant
    enfant2
    erotique
    erotiques
    erotisme
    ethnic
    etudiante
    exhibitionniste
    exotic
    f1-rallye
    face
    facial
    familiale
    famille
    fat
    fellation
    femdom
    femme
    femme2
    femme3
    fesse
    fetichisme
    fetish
    ffm
    film-gratuit
    film-gratuit2
    film
    film2
    films
    films2
    fingering
    firefox
    first-time
    fisting
    flashing
    fond-d-ecran
    fonds-d-ecran
    foot
    football
    footjob
    fucking
    gay
    gay2
    gay3
    girl
    glory-hole
    golf
    granny
    gratuit
    gratuit2
    gratuit3
    gratuit4
    gratuite
    gratuite2
    gratuite3
    gratuite4
    gros
    grosse
    hairy
    handjob
    hard
    hardcore
    hentai
    histoire
    homosexuel
    horoscope
    horoscopes
    hot
    housewife
    huge
    humour
    humour2
    icone
    icq
    illusion
    image-humour
    image
    image2
    image3
    indian
    interracial
    japanese
    jeu
    jeu2
    jeu3
    jeune
    jeux
    jeux2
    jeux3
    kazaa-gratuit
    kazaa
    latex
    latina
    latinas
    lesbian
    lesbienne
    limewire
    lingerie
    logiciel-gratuit
    logiciel
    logiciel2
    logiciels-gratuit
    logiciels
    logiciels2
    maid
    male
    manga
    mardi-gras
    massage
    masturbation
    mature
    mature2
    messenger-gratuit
    messenger
    midget
    milf
    mmf
    model
    models
    mom
    morpheus
    movie
    mp3-gratuit
    msn-gratuit
    msn
    msn2
    mure
    music-gratuite
    musique-gratuite
    musiques-gratuites
    naked
    natural
    nature
    naughty
    nero-gratuit
    nero
    noire
    nu
    nude
    nudist
    nudiste
    oral
    orgasme
    orgie
    orgy
    oriental
    outdoor
    pantie
    parole-gratuit
    paroles-gratuit
    partition
    partitions
    penis
    petite
    photo
    photo2
    photo3
    photo4
    pied
    pink
    pipe
    pissing
    plumper
    poitrine
    porn-gratuit
    porn
    porno-gratuit
    porno-gratuit2
    porno
    porno2
    porno3
    pornographie
    pornstar
    pps-ppt
    pregnant
    private
    programme
    puffy
    pussy
    rasee
    real-player
    recette
    recette2
    recettes
    recettes2
    redhead
    rimjob
    rousse
    sado
    safari
    salope
    schoolgirl
    sex-gratuit
    sex
    sex2
    sexe-gratuit
    sexe-gratuit2
    sexe
    sexe2
    sexe3
    sexuelle
    sexy
    sexy2
    shareaza
    shaving
    shemale
    shower-bath
    skype
    smoking
    sodomie
    softcore
    soluce
    solution-jeu
    spanking
    spectacle
    sport
    sportive
    spybot
    squirting
    stories
    strapon
    strip
    student
    suce
    suceuse
    swinger
    tarot
    tatouage
    tatouages
    tease
    teen
    tele
    telechargement-antivirus
    telechargement-chanson
    telechargement-chansons
    telechargement-divx
    telechargement-emule
    telechargement-film
    telechargement-gratuit
    telechargement-kazaa
    telechargement-logiciel
    telechargement-logiciels
    telechargement-messenger
    telechargement-movie
    telechargement-mp3
    telechargement-msn
    telechargement-music
    telechargement-musique
    telechargement-nero
    telechargement-parole
    telechargement-paroles
    telechargement-porn
    telechargement-porno
    telechargement-sex
    telechargement-sexe
    telechargement-x
    telechargement-xxx
    telechargement
    telechargement2
    telecharger
    telecharger2
    telecharger-antivirus
    <a href="http://home.tiscali.cz:808

    Posted by: maripikos on June 17, 2007 at 01:44 PM



Only logged in users may post comments. Login Here.


Powered by
Movable Type 3.01D
 Feed java.net RSS Feeds