New Device Security Policy Survey (Free T-Shirt for Completion)

Done

Hello everyone! I am a marketing intern at Champion Solutions Group and I wanted to let you know we are doing some research on mobile device security and thought you could help us gather data by filling out thistwo minutesurvey (or you can forward to someone at your company that is better suited). Your answers are anonymous and when we are done I will share the overall results with you. Thank you.
https://www.surveymonkey.com/s/MessageOps
Email me at [email protected] after completion with your size *only large,XL, and XXL left in stock* and address and you will receive an orange or blue "working on it.." T-Shirt!
This topic first appeared in the Spiceworks Community

Similar Messages

  • New Mobile Device Security Policy Survey (Free T-Shirt for Completion)

    Is this US only or do you send to the UK?

    Hello everyone!  I am a marketing intern at Champion Solutions Group and I wanted to let everyone know that we are doing some research on mobile device security and thought you could help us gather data by filling out this brief survey (or you can forward to someone at your company that is better suited). Your answers are anonymous and when we are done I will share the overall results with you.  Thank you.
    https://www.surveymonkey.com/s/MessageOps
    P.S. Email me after completing the survey at [email protected] including your size and address to receive this "working on it..." T-Shirt for Free! *comes in orange and blue*
    This topic first appeared in the Spiceworks Community

  • How to specify the security policy "Allow access to everyone" for security role in Deployment descriptor

    Hi,
    I am migrating a web application from Websphere to Weblogic. The web application has a security role defined in web.xml (Use LDAP for authentication).
    security-role>
            <description>Authenticated</description>
            <role-name>Authenticated</role-name>
        </security-role>
    This role is mapped to a special subject "All authenticated user in appliation realm" in WAS.
    In weblogic, I have the following setting in weblogic.xml
    <wls:security-role-assignment>
            <wls:role-name>Authenticated</wls:role-name>
            <wls:externally-defined />
        </wls:security-role-assignment>
    And after deploy the application, have to manually add a security role and add the security policy "Allow access to everyone" to this role.
    I am wondering if this setting can be specified in  for example weblogic.xml so just deploy web applicaiton using deployment descriptor, and I don't need write script to do that .
    Thanks

    Hi,
    You need to have Back End support to achieve this. In Back End you need to create two groups . You need to know what joins has to be made for which group (which is more important) and also make session variable for the userrole (with SQL supporting it). In the BMM layer, we need to put the security join conditions in the 'where clause'.
    And make a common report. User loggin in with the respective userid will have userrole and joins assigned in the Back end. And they will be viewing the report according to their access.
    Hope this will solve your problem.
    Regards
    MuRam

  • I can't purchase any app in my new devices "security questions issue"

    Im soo sad and angry from apple support ..
    i have thisproblem since 4 months now and the support wont solve it ..
    i got ipad 3 few months ago .. when i try to purches new apps for it the account ask me to answer the seucrity questions , even the answers are right it says it wrong !!! but when i purches and app with my old ipad or macbook pro its fine...
    now i got macbook air and the problem become bigger to me .. i dont want to purchas in my old devies and go back to the new once to download them !!!
    yaa , when i try to change the security question !! i couldnt find the option !!
    i hope someone can help me
    Amira

     Account Security Team (AST) 
    Check the AppleCare number for your country here:
    http://support.apple.com/kb/HE57
    Call them up, and let them know you would like to be transferred to the Account Security Team.

  • IWork for new devices on iOS7 for free - IT WORKS :)

    1. You go to AppStore -> Purchased
    2. In Search box write "iWork" - and turns out that all iWork is for free - in Purchased section

    I had the same problem...  missing free iWork apps.   I contacted Apple though the support website, opened a case...  within 24 hours, I had a reply asking for my device serial number - and like magic, I can now download them for free.
    Apple is very nice about it, I think they just need to reset a flag on existing customers who bought new devices = then they are free.

  • WebStart, custom security policy and debugging

    Hi,
    Please forgive the long post, it's an obscure problem.
    A year ago I implemented a custom instance-centric security policy that uses a database for storing permission data. It has served our needs very well on the server side. Now, however, I need to reuse it in a client application deployed to about 50 users via WebStart (there are more similar applications coming which will take the user base to about 200).
    For some reason, the permissions are not being properly evaluated under WebStart. Tracing through my policy code, I can see that calls to imply() return with expected true/false values, however, when the internals of Java's underlying security API aggregate the results, calls to AccessController.checkPermission() don't raise exceptions when and where they are expected to.
    This is really a hard problem to debug/trace. When I run the application locally, I have no problems with security checks even if I run it under a security manager (via -D.java.security.manager). Tracing to standard helps to a point and I can see that there is a difference: during the local runs, calls to MyCustomPolicy.implies(Permission, Domain) are made once per every AccessController.checkPermission() call made from the business layer. Under WebStart, there are three calls to MyCustomPolicy.implies() per every call to AccessController.checkPermission(). All three calls seem to come from the same stack frame. All three return 'false', yet AccessController.checkPermission() doesn't raise an exception.
    Analyzing stack's state at the point MyCustomPolicy.implies() is been called, I think the answer to my problem may lie in the following code snippet of AccessControlContext.checkPermission(Permission):
            for (int i=0; i< context.length; i++) {
                if (context[i] != null &&  !context.implies(perm)) {
    if (debug != null) {
    debug.println("access denied "+perm);
    if (Debug.isOn("failure")) {
    Thread.currentThread().dumpStack();
    final ProtectionDomain pd = context[i];
    final Debug db = debug;
    AccessController.doPrivileged (new PrivilegedAction() {
    public Object run() {
    db.println("domain that failed "+pd);
    return null;
    throw new AccessControlException("access denied "+perm, perm);
    I believe that somehow one of the iterations gets to "return null" line, but at the moment I have no way of verifying this.
    I'm finally getting to my question. In order for me to understand what's going on, I need to enable debugging of AccessControlContext. I can do this by setting java.security.debug system property. Again, I have no problem enabling debugging on a local system, but not under WebStart.
    Here's what the relevant markup in the .jnlp file looks like:
    <resources>
    <j2se version="1.5" max-heap-size="128m" initial-heap-size="32m" java-vm-args="-Djava.security.debug=all">
    </j2se>
    <!-- a bunch of jar declarations -->
    <property name="java.security.auth.login.config" value="jar:swing-app-SNAPSHOT.jar!/jaas_login.properties">
    </property>
    <property name="java.security.debug" value="all">
    </property>
    </resources>
    this seems to have no effect and no debugging output appears. Any ideas why? Is there anything else I can do to enable debugging of AccessControlContext under WebStart?
    I don't expect too many replies to my post (unless 3 sleepless weeks made me miss something really obvious), but if anyone can offer a hit/hit/insightful comment :), that would be great.
    Dmitry

    Hey
    I have just finished such a policy implemention - boy could I have done with your help!
    I've never seen the java.security.debug property before - not to say it doesn't exist, but don't confuse system properties and security properties. Try setting it programmatically via Security.setProperty() or the Java Admin console [if you can], or even in the JRE WebStart uses via the java.security file.
    When you run it locally with security switched on, do you observe the 3-to-1 behaviour also? I'm not sure if this is important - depends on your answer. As for the checks being performed from the same stack frame, the AC iterates over the protection domains as it checks them; the 3-to-1 behaviour is the result of there being 3 extra frames to check, possibly due to the fact your executing from JWS [although I'd expect JWS to be considered system code]. If the execution in AC gets to return null; then Debug.isOn("failure") must evaluate to true [...I'd slump in my chair at this point] but there's no way to figure out accurately what the semantics of this is AS THERE'S NO FRICKIN SRC AVAILABLE [...this really annoys me]. The only thing I can suggest for that is to not try and switch debugging on.
    I suspect you are using JAAS [hence the dynamic policy need]? I have an idea if you are.
    I totally know what you mean about the sleepless nights mate - I'm glad I done it all now, learnt all about security within Java which I knew nothing about 6 months ago.
    Warm regads,
    D

  • MacPro   MOTU 828mkii firewire showing up as new device every boot.

    Hello,
    I have a Mac Pro and a MOTU 828 Mkii firewire soundcard. Everytime I boot my machine the soundcard will show up as a new device in the MIDI settings. So for example over time I will get "828mk2 #50" etc in the MIDI Studio window in Audio MIDI Setup. So it will end up with hundreds of these entries over time.
    The other annoying piece to this is that everytime I launch Ableton Live it will show as "No Device" for audio as the soundcard is now registered as new. This makes me select it every time I launch Live, and enable all the inputs/outputs over again. (So I have to click 20+ buttons everytime I launch live on a fresh boot/reboot.)
    This is driving me insane. I've updated to the latest MOTU drivers, I have updated to the latest OSX. I can't seem to find a fix to this.
    Please help?
    Thanks!
    Brett

    Hello,
    I have a Mac Pro and a MOTU 828 Mkii firewire soundcard. Everytime I boot my machine the soundcard will show up as a new device in the MIDI settings. So for example over time I will get "828mk2 #50" etc in the MIDI Studio window in Audio MIDI Setup. So it will end up with hundreds of these entries over time.
    The other annoying piece to this is that everytime I launch Ableton Live it will show as "No Device" for audio as the soundcard is now registered as new. This makes me select it every time I launch Live, and enable all the inputs/outputs over again. (So I have to click 20+ buttons everytime I launch live on a fresh boot/reboot.)
    This is driving me insane. I've updated to the latest MOTU drivers, I have updated to the latest OSX. I can't seem to find a fix to this.
    Please help?
    Thanks!
    Brett

  • Trying change my credit card info from previously lost credit card but can't since it says I'm accessing from new device and asks for security code for a card i no longer have. What can I do?

    I've recently gotten a new laptop and replaced my damaged iphone. Apparently these 2 scenarios qualify as "new devices". This is fine but I also had lost my credit card previously that was connected to my iTunes account, and got a new one with all different numbers. When I try to change my billing information to this new card it won't let me because it says
    "Your account has been accessed from a new device, and you must verify your payment information before you can make purchases."
    and it asks for the security code of the card I had lost and replaced! I am not able to change my billing info to my new card thus because I can't get past this.
    Can anyone please help?

    Contact iTunes Customer Service and request assistance
    Apple  Support  iTunes Store  Contact Us

  • If I forgot my security questions/answers and I'm trying to buy on a new device but same Apple ID, what do I do?

    If I forgot my security questions/answers and I'm trying to buy on a new device but same Apple ID, what do I do?

    See my User Tip for some help: Some Solutions for Resetting Forgotten Security Questions: Apple Support Communities.
    Send Apple an email request for help at: Apple - Support - iTunes Store - Contact Us
    Call Apple Support in your country: Customer Service: Contacting Apple for support and service

  • HT201303 How can I find out what my security answers are? I am trying to purchase an app on a new device and it won't let me without answering and I have totally forgotten

    How can I find out what my security answers are? I am trying to purchase an app on a new device and it won't let me without answering and I have totally forgotten

    Welcome to the Apple Community.
    You might try to see if you can change your security questions. Start here, change your country if necessary and go to manage your account > Password and Security.
    I'm able to do this, others say they need to input answers to their current security questions in order to make changes, I'm inclined to think its worth a try, you don't have anything to lose.

  • Create new Security Policy in UME is not available

    Hello,
    We are on NW CE 7.1 EHP1 and MII 12.1.7 build 47.
    I have MII Super Administrator role, few custom roles and I also have Action "Manage_All" and I am able to perform most of the activities on UME but I don't see any option to create new security policies all I can do is modify the Default Security Policy and save it.
    It never shows me an option to create new security policy and I am not sure what roles or actions I am missing.
    1) Are there any roles or actions that my profile needs to have?
    2) Is it something to do with NW CE version or MII version?
    3) Has something gone wrong or have we missed some configuration while installing NW CE or MII?
    Any suggestions will be of great help
    Thanks,
    Adarsh

    Adarsh,
    I am not a NW UME expert, but I know this issue has nothing to do with MII.  Not sure if you have rights but providing the Administrators Group for the UME database should allow you to do this. 
    I would try posting this thread on the NW UME Forum.  Modifying policies in NW has nothing to do with MII. 
    Just to verify what policies are you trying to change, I am assuming they are in NW UME and not MII, is this correct?  If they are in MII can you be more specific.
    Good luck.

  • I got a new ipad and went buy music on iTunes and in is telling me that this is a new device on this account and wants me to answer some security questions I dont remember setting thes up and dont know the answers how do i reset the security questions

    i got a new ipad and went buy music on iTunes and in is telling me that this is a new device on this account and wants me to answer some security questions I dont remember setting thes up and dont know the answers how do i reset the security questions

    Click here and search the article for '2 out of 3' without the quotes; this generally involves either a message being sent to your rescue email address or contacting the iTunes Store staff directly.
    (74313)

  • HT1689 me and my husband both have iphones 4 on the same itunes account but he cannot purchase anything cuz it keeps sayin its a new device and he needs to answer security questions.the questions are not what we set up the acct with. help!

    My husband and I both have i phone 4 on the same itune acct but his phone is saying its a new device and will not let him buy anything off of our acct without answering security questions.  these questions are not the ones we set up the acct with. my iphone device is not having this problem. Help!

    I don't know if I'm asking this all in a way that can be understood? Thanks ED3K, however that part I do understand (in the link you provided!)
    What I need to know is "how" I can separate or rather create another Apple ID for my son-who is currently using "my Apple ID?" If there is a way to let him keep "all" his info on his phone (eg-contacts, music, app's, etc.) without doing a "reset?') Somehow I need to go into his phone's setting-create a new Apple ID and possibly a new password so he can still use our combined iCloud & Itunes account?
    Also then letting me take back my Apple ID & password, but again allowing us (my son and I) to use the same iCloud & Itunes account? Does that make more sense??? I'm sincerely trying to get this cleared up once and for all----just need guidance from someone who has a true understanding of the whole Apple iCloud/Itunes system!
    Thanks again for "anyone" that can help me!!!

  • Hello, i have a new ipod and a itunes card(25$) and i would try to buy music. But since it's a new device then i have to awnser the security questions. I forgot both of the awnsers

    Hello, i think i have made a mistake... But since i have more too write i will. New device and 25$ gift card. I have to awnser security questions but i do not kno them. I have the money in my acct. but i ave to awnser the security questions because of this is my first time purchase something on this device. It says if i dont know the awnsers then send it to this email. But the thing is i dont think it is a real email, it might be i will check. PLEASE HELP

    If that's not a real email, you need to ask Apple to reset your security questions; ways of contacting them include clicking here and picking a method for your country, phoning AppleCare and asking for the Account Security team, and filling out and submitting this form.
    (99730)

  • Option to Create new Security Policy in UME is not available

    Hello,
    We are on NW CE 7.1 EHP1 and MII 12.1.7 build 47.
    I have "Administrator" role, "MII Super Administrator" role, few custom roles and I also ensured that "Administrator" role has Action "Manage_All" and I am able to perform all of the activities on UME except that I don't see any option to create new security policies, all I can do is modify the Default Security Policy and save it.
    It never shows me an option to create new security policy and I am not sure what roles or actions I am missing.
    I need have different security polices for different users based on their roles.
    1) Are there any roles or actions that my profile needs to have?
    2) Is it something to do with NW CE version?
    3) Has something gone wrong or have we missed some configuration while installing NW CE?
    I had posted similar question in MII forum but was recommended to post in NW forums.
    So any suggestions will be of great help
    Thanks,
    Adarsh

    what is Security Policy ?

Maybe you are looking for

  • DOWNLOADING FROM iPHONE 3GS TO PHOTOSHOP ELEMENTS 8 (PC)

    HI, Please Please Please can anybody help me? I am ABSOLUTELY desperate for an answer!!! I have an iPhone 3Gs and Photoshop Elements 8 and work on a PC running Windows Vista (32). I used to run all the same but with Photoshop Elements Version 5. Ever

  • Why are my holidays duplicated three or four times in iCal?

    On iCal, my US holidays are duplicated three or four times. I do not use MobileMe. I do have it synced with my iPhone but for some reason, only the US holidays are the ones that are duplicated on iCal on my desktop. Anyone know how to correct this?

  • [Help] How to check the object locks held by a specific thread?

    As the title I want to check locks held by a specific thread. How can I do this? In Java lock is acquired and release automatically by stating synchronized keyword. I have no idea on how to check the lock status and who owns whick lock. Regards, Skee

  • Iphone 4 will not sync after restore

    Iphone 4 will not sync via itunes via USB cable after restore.  Rebooted PC and iphone.  Latest version of itunes and iOS.  Device appears on left hand window, but the main window only shows the Apple logo, and empty white box, and a small LOCK symbo

  • Image component always on top

    I having an issue with the positioning of some of my images... It seems that they are going behind the main img and i cant see them... I have a button so that when you click the image is suppose to appear but it wont... is there some kind of code tha